-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.78 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
{
"name": "hyperdis",
"description": "A high performance reactive state store for web apps",
"homepage": "https://github.com/chartshq/hyperdis",
"version": "1.0.3",
"license": "MIT",
"main": "dist/hyperdis.js",
"author": "Charts.com <[email protected]>",
"keywords": [
"hyperdis",
"reactive",
"programming",
"state",
"global",
"store"
],
"repository": {
"type": "git",
"url": "https://github.com/chartshq/hyperdis"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "6.18.0",
"chai": "3.5.0",
"cross-env": "^5.0.5",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.3.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdoc": "3.4.3",
"karma": "1.7.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-mocha": "1.3.0",
"karma-spec-reporter": "0.0.31",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.3",
"mocha": "3.4.2",
"mocha-webpack": "0.7.0",
"transform-runtime": "0.0.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"test": "npm run lint && npm run ut",
"ut": "karma start karma.conf.js",
"utd": "karma start karma.conf.js --browsers=Chrome --single-run=false --debug --auto-watch",
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"lint": "eslint ./src",
"docs": "jsdoc -c ./jsdoc.conf.json"
}
}