forked from menpo/landmarker.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "landmarker-io",
"version": "2.4.0",
"description": "Image and 3D mesh annotation in your browser.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/menpo/landmarker.git"
},
"scripts": {
"build:clean": "rm -rf ./build",
"build:copystatic": "cp -r ./static ./build",
"build:prep": "npm run build:clean && npm run build:copystatic",
"build:webpack": "webpack --config ./webpack/webpack.prod.config.js",
"build": "NODE_ENV=production npm run build:prep && npm run build:webpack",
"watch:webpack-dev-server": "webpack-dev-server --config ./webpack/webpack.dev.config.js --colours --content-base ./build",
"watch": "npm run build:prep && npm run watch:webpack-dev-server",
"test": "mocha --compilers js:babel/register -R spec --recursive ./test",
"coverage": "istanbul cover _mocha -- --compilers js:babel/register -R dot --recursive ./test",
"lint": "eslint -c .eslintrc src/js",
"lint:errors": "eslint -c .eslintrc --quiet src/js"
},
"keywords": [
"webgl",
"three"
],
"author": "James Booth <[email protected]> (github.com/jabooth)",
"license": "BSD-3-Clause",
"dependencies": {
"appcache-webpack-plugin": "^1.2.0",
"autoprefixer": "^5.0.0",
"autoprefixer-loader": "^3.1.0",
"babel": "^5.6.3",
"babel-loader": "^5.3.2",
"backbone": "^1.3.3",
"css-loader": "^0.21.0",
"jquery": "^3.3.1",
"js-yaml": "^3.12.0",
"json-loader": "^0.5.3",
"node-sass": "^4.9.2",
"promise-polyfill": "^8.0.0",
"resolve-url-loader": "^1.3.0",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"three": "^0.94.0",
"underscore": "^1.9.1",
"url-loader": "^0.5.6",
"webpack": "^1.12.2"
},
"devDependencies": {
"babel-eslint": "^3.1.23",
"chai": "^3.0.0",
"colors": "^1.1.2",
"esformatter": "^0.7.1",
"esformatter-braces": "^1.2.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-quotes": "^1.0.2",
"eslint": "^0.24.1",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"webpack-dev-server": "^1.12.1",
"yargs": "^3.15.0"
},
"babel": {
"stage": 0
}
}