forked from pauldijou/redux-act
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "redux-act",
"version": "1.5.0",
"license": "Apache-2.0",
"description": "An opinionated lib to create actions and reducers for Redux",
"keywords": [
"redux",
"flux",
"action",
"reducer",
"batch"
],
"main": "lib/index.js",
"types": "./types.d.ts",
"typings": "./types.d.ts",
"homepage": "/~https://github.com/pauldijou/redux-act",
"author": {
"name": "Paul Dijou",
"url": "http://pauldijou.fr"
},
"repository": {
"type": "git",
"url": "/~https://github.com/pauldijou/redux-act"
},
"bugs": {
"url": "/~https://github.com/pauldijou/redux-act/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"chai-spies-next": "^0.8.0",
"isparta": "^4.0.0",
"mocha": "^4.0.1",
"mocha-better-spec-reporter": "^3.1.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"typescript": "^2.5.3",
"typescript-definition-tester": "0.0.5",
"uglify-js": "^3.1.6"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src --out-dir lib",
"browserify": "mkdir -p dist && browserify -s ReduxAct lib/index.js > dist/redux-act.js",
"uglify": "uglifyjs dist/redux-act.js -o dist/redux-act.min.js",
"prepublish": "npm run clean && npm run build && npm run browserify && npm run uglify",
"test": "NODE_ENV=test mocha --recursive --compilers js:babel-core/register --reporter mocha-better-spec-reporter",
"coverage": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive --reporter mocha-better-spec-reporter"
}
}