-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 5.98 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
{
"name": "cor-js",
"version": "0.0.1",
"description": "Canvas Object Renderer",
"scripts": {
"win:start": "npm run win:start:materials",
"win:start:rect": "gulp replace --entry 'rect' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:circle": "gulp replace --entry 'circle' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:path": "gulp replace --entry 'path' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:materials": "gulp replace --entry 'materials' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:matrix": "gulp replace --entry 'matrix' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:cor": "gulp replace --entry 'cor' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:colors": "gulp replace --entry 'colors' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:text": "gulp replace --entry 'text' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:timeline": "gulp replace --entry 'timeline' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:modes": "gulp replace --entry 'modes' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:depth": "gulp replace --entry 'depth' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:start:chart": "gulp replace --entry 'chart' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"win:test:watch:phantomjs": "rimraf reports && karma start \"karma/karma.watch.phantomjs.config.js\"",
"win:test:watch:all": "rimraf reports && karma start \"karma/karma.watch.all.config.js\"",
"win:test:once": "rimraf reports && karma start \"karma/karma.once.config.js\"",
"win:build:dry": "rimraf dist && webpack --config \"webpack/webpack.build.config.js\"",
"win:build:report": "rimraf dist && npm run test:once && webpack --config \"webpack/webpack.build.config.js\"",
"start": "npm run start:cor",
"start:rect": "gulp replace --entry 'rect' && webpack-dev-server --config './webpack/webpack.server.entry.config.js' --hot --inline",
"start:circle": "gulp replace --entry 'circle' && webpack-dev-server --config './webpack/webpack.server.entry.config.js' --hot --inline",
"start:path": "gulp replace --entry 'path' && webpack-dev-server --config './webpack/webpack.server.entry.config.js' --hot --inline",
"start:materials": "gulp replace --entry 'materials' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:matrix": "gulp replace --entry 'matrix' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:cor": "gulp replace --entry 'cor' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:colors": "gulp replace --entry 'colors' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:text": "gulp replace --entry 'text' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:timeline": "gulp replace --entry 'timeline' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:modes": "gulp replace --entry 'modes' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:depth": "gulp replace --entry 'depth' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"start:chart": "gulp replace --entry 'chart' && webpack-dev-server --config \"webpack/webpack.server.entry.config.js\" --hot --inline",
"test:watch:phantomjs": "rimraf reports && karma start './karma/karma.watch.phantomjs.config.js'",
"test:watch:all": "rimraf reports && karma start './karma/karma.watch.all.config.js'",
"test:once": "rimraf reports && karma start './karma/karma.once.config.js'",
"build:dry": "rimraf dist && webpack --config './webpack/webpack.build.config.js'",
"build:report": "rimraf dist && npm run test:once && webpack --config './webpack/webpack.build.config.js'"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.7.1",
"eslint-loader": "^1.5.0",
"gl-matrix": "^2.3.2",
"gulp": "^3.9.1",
"gulp-inject-string": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"html-webpack-plugin": "^2.22.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor2": "^1.2.1",
"karma-webpack": "^1.8.0",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.12",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"webpack": "^1.13.2",
"webpack-dev-server": "~1.16.1",
"webpack-shell-plugin": "^0.4.3",
"yargs": "^6.0.0"
}
}