forked from bhouston/threeify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "threeify",
"version": "1.87.0",
"description": "Typescript 3D Library loosely based on three.js",
"keywords": [
"threeify",
"webgl",
"webgpu",
"3D"
],
"homepage": "http://threeify.org",
"author": "threeify authors",
"bugs": {
"url": "https://github.com/threeify/threeify/issues"
},
"license": "ISC",
"main": "dist/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/threeify/threeify"
},
"typings": "dist/lib/index.d.ts",
"scripts": {
"build": "tgt & tsc",
"dev": "npm run watch & npm start",
"lint": "eslint ./src/",
"start": "es-dev-server --node-resolve --watch",
"docs": "typedoc",
"watch": "tsc --watch & tgt --watch",
"postinstall": "cp --remove-destination ./hooks/prepare-commit-msg ./.git/hooks/prepare-commit-msg && chmod +x ./.git/hooks/prepare-commit-msg"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"es-dev-server": "^1.53.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-cflint": "^1.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"semantic-release": "^17.0.8",
"threeify-glsl-transpiler": "1.1.13",
"ts-jest": "^26.1.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.3"
},
"engines": {
"node": "^12.13.0"
},
"engineStrict": true,
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": false
},
"module": "index.ts",
"type": "module",
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}