-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.02 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
{
"version": "0.0.1",
"private": true,
"name": "Anemic-Components",
"description": "Anemic components for rich-data presentation",
"repository": "https://github.com/haroldcampbell/anemic-components",
"license": "Apache 2.0",
"main": "dist/ancui.js",
"dependencies": {
"http-server": "^0.11.1"
},
"scripts": {
"postinstall": "echo '-x-Done-x-'",
"prestart": "npm install",
"start": "http-server ./www -a 0.0.0.0 -p 8001",
"test": "tap",
"posttest": "tap --coverage-report=html",
"doc": "./node_modules/.bin/jsdoc lib/*.js --destination ./doc",
"bundle": "./node_modules/.bin/webpack --watch",
"bundle-examples": "./node_modules/.bin/webpack --config webpack.examples.config.js",
"bundle-examples-watch": "./node_modules/.bin/webpack --watch --config webpack.examples.config.js",
"bundle-experiment": "./node_modules/.bin/webpack --config webpack.experimental.config.js",
"bundle-experiment-watch": "./node_modules/.bin/webpack --watch --config webpack.experimental.config.js"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babelify": "^10.0.0",
"browser-env": "^3.3.0",
"clean-webpack-plugin": "^0.1.17",
"eslint": "^4.13.1",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"glob": "^6.0.1",
"html-webpack-plugin": "^2.30.1",
"jasmine-core": "^2.6.4",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.2",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"mocha": "^6.2.2",
"protractor": "^6.0.0",
"shelljs": "^0.7.8",
"socket.io": "^2.0.3",
"tap": "^14.10.2",
"tape": "^4.11.0",
"tmp": "0.0.31",
"webpack": "^3.8.1"
}
}