-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 997 Bytes
/
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
{
"name": "redux-helper",
"version": "1.0.6",
"license": "MIT",
"description": "Redux reducer and action helper",
"repository": "https://github.com/vgmr/redux-helper/",
"private": false,
"main": "dist/index.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"devDependencies": {
"@types/expect": "^1.20.2",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.50",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"expect": "^21.2.1",
"jsdom": "^11.3.0",
"mocha": "^4.0.1",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0"
},
"dependencies": {
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"scripts": {
"release": "npm run build && npm version patch && npm publish",
"build": "rimraf dist && tsc",
"postbuild": "babel dist -d dist",
"test": "mocha --opts test/config/mocha.opts"
}
}