-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "redux-hypercube",
"version": "1.0.0",
"description": "",
"main": "redux-hypercube.js",
"scripts": {
"browserify": "browserify -r ./${npm_package_main}:${npm_package_name} -o dist/${npm_package_name}.js",
"build": "npm run browserify; npm run minify",
"check-deps": "npm outdated",
"minify": "cd dist; uglifyjs ${npm_package_name}.js --source-map --output ${npm_package_name}.min.js --compress --mangle -b beautify=false; cd -",
"postversion": "git push origin v${npm_package_version}; npm publish; git push origin master",
"test": "NODE_PATH=. tape test/**/*.js"
},
"pre-commit": [
"test",
"check-deps"
],
"repository": {
"type": "git",
"url": "git+https://github.com/boweihan/redux-hypercube.git"
},
"keywords": [
"olap",
"redux",
"data",
"warehouse",
"state",
"machine",
"table",
"cube",
"hypercube",
"state-machine"
],
"author": "Bowei Han",
"license": "MIT",
"bugs": {
"url": "https://github.com/boweihan/redux-hypercube/issues"
},
"homepage": "https://github.com/boweihan/redux-hypercube#readme",
"devDependencies": {
"browserify": "^16.2.2",
"deep-freeze": "0.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"pre-commit": "^1.2.2",
"tape": "^4.8.0",
"uglify-es": "^3.3.9"
},
"dependencies": {
"not-defined": "^2.0.1",
"static-props": "^1.1.1",
"strict-mode": "^1.1.2"
}
}