-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "particlez",
"version": "1.0.0",
"description": "particle simulation app build with es6 and threejs.",
"main": "index.js",
"scripts": {
"build": "parcel build src/index.html",
"dev": "parcel src/index.html",
"test": "jest --coverage",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"prettier": "prettier src/**/*.ts --write",
"pre-commit": "npm run prettier && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kochie/particle-sim-v2.git"
},
"author": "Robert Koch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kochie/particle-sim-v2/issues"
},
"homepage": "https://github.com/kochie/particle-sim-v2#readme",
"dependencies": {
"@types/three": "^0.103.2",
"dat.gui": "^0.7.6",
"parcel-bundler": "^1.12.4",
"stats.js": "^0.17.0",
"three": "^0.114.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/dat.gui": "^0.7.2",
"@types/jest": "^24.0.11",
"@types/node": "^13.9.2",
"@types/stats.js": "^0.17.0",
"@types/uuid": "^3.4.4",
"coveralls": "^3.0.1",
"husky": "^4.2.3",
"jest": "^24.7.0",
"prettier": "^1.16.4",
"typescript": "^3.8.3"
},
"prettier": {
"useTabs": true,
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"pre-push": "npm test"
}
}
}