-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 KB
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
{
"private": true,
"scripts": {
"lint-ts": "tslint --fix src/ts/**",
"lint-md": "markdownlint --ignore node_modules .",
"lint": "npm run lint-ts && npm run lint-md",
"pretty": "prettier --write --config .prettierrc.json '**/*'",
"preinstall": "npx npm-force-resolutions",
"start": "trap 'exit 0' SIGINT ; parcel -d tmp src/index.html --open",
"poststart": "npm run cleanup -- tmp",
"build": "parcel build --public-url /$(basename $(pwd))/ src/index.html",
"deploy": "gh-pages -d dist -m \"Built from $(git rev-parse --short HEAD) on master\" ; npm run cleanup -- dist",
"cleanup": "gh-pages-clean && rm -rf"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run pretty",
"pre-push": "if git-branch-is master ; then npm run build && npm run deploy ; fi"
}
},
"author": "Alex McDermott",
"license": "ISC",
"devDependencies": {
"@types/dat.gui": "^0.7.5",
"@types/gl-matrix": "^3.2.0",
"caniuse-lite": "^1.0.30001143",
"gh-pages": "^3.1.0",
"git-branch-is": "^4.0.0",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.1",
"husky": "^4.3.0",
"markdownlint-cli": "^0.24.0",
"minimist": "^1.2.5",
"node-forge": "^0.10.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.3"
},
"dependencies": {
"dat.gui": "^0.7.7",
"gl-matrix": "^3.3.0",
"twgl.js": "^4.16.1"
},
"resolutions": {
"caniuse-lite": "^1.0.30001143",
"minimist": "^1.2.5",
"node-forge": "^0.10.0"
}
}