-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
67 lines (67 loc) · 2.11 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": "ng-redux",
"version": "4.4.5",
"description": "Redux bindings for Angular.js",
"main": "lib/ng-redux.js",
"module": "es/ng-redux.js",
"typings": "./index.d.ts",
"files": [
"lib",
"es",
"src",
"umd",
"index.d.ts"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/ng-redux.js",
"build:es": "cross-env NODE_ENV=es rollup -c -o es/ng-redux.js",
"build:umd": "cross-env NODE_ENV=development rollup -c -o umd/ng-redux.js",
"build:umd:min": "cross-env NODE_ENV=production rollup -c -o umd/ng-redux.min.js",
"clean": "rimraf lib umd es",
"commitmsg": "commitlint -e $GIT_PARAMS",
"versionbump": "standard-version",
"prepublish": "npm run clean && npm test && npm run build",
"prerelease": "npm run prepublish",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/wbuchwalter/ng-redux"
},
"author": "William Buchwalter <[email protected]> (http://github.com/wbuchwalter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular-redux/ng-redux/issues"
},
"homepage": "https://github.com/angular-redux/ng-redux#readme",
"devDependencies": {
"@commitlint/cli": "^5.2.8",
"@commitlint/config-conventional": "^5.2.3",
"babel-core": "^6.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"expect": "^1.20.2",
"husky": "^0.14.3",
"mocha": "^3.5.0",
"redux": "^3.7.2",
"rimraf": "^2.6.1",
"rollup": "0.55.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^3.2.0",
"standard-version": "^4.2.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"invariant": "^2.2.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"redux": ">3.0.0"
}
}