-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "threestrap",
"version": "0.5.1",
"description": "Minimal Three.js Bootstrapper",
"repository": {
"type": "git",
"url": "https://github.com/unconed/threestrap.git"
},
"main": "src/index.js",
"dependencies": {
"stats.js": "^0.17.0"
},
"files": [
"/src",
"build",
"*.md",
"FUNDING.yml"
],
"peerDependencies": {
"three": ">=0.118.0"
},
"scripts": {
"build": "webpack --mode=production --config-name=threestrap",
"dev": "webpack --mode=development --watch --config-name=threestrap",
"prepack": "npm run build",
"lint": "eslint src/**/*.js",
"test": "webpack --config-name=tests && karma start --single-run --browsers=ChromeHeadless",
"test:watch": "concurrently --names=webpack,karma -c=magenta,cyan 'webpack --watch --config-name=tests' 'karma start'"
},
"prettier": {},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/karma": "^6.3.3",
"@types/node": "^18.11.17",
"concurrently": "^7.6.0",
"eslint": "^7.28.0",
"eslint-plugin-jasmine": "^4.1.2",
"glob": "^8.0.3",
"gulp": "^4.0.2",
"jasmine-core": "^4.5.0",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^4.0.1",
"prettier": "2.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-stream": "^6.1.2"
},
"author": "Steven Wittens",
"license": "MIT"
}