-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "redux-packa",
"version": "1.0.3",
"description": "thin wrapper around redux-pack with hooks for cancelable promises",
"main": "lib/index.js",
"keywords": [
"redux-pack",
"cancelable promises"
],
"author": "Daniel Lundin <[email protected]>",
"license": "MIT",
"dependencies": {
"redux-pack": "^0.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-lundin/redux-packa.git"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"eslint": "^3.17.1",
"expect": "^1.20.2",
"kuta": "0.0.21",
"redux": "^3.6.0",
"sinon": "^1.17.7"
},
"kuta": {
"files": [
"test/*tests.js"
],
"requires": [
"babel-register",
"test/test-setup.js"
]
},
"files": [
"src",
"lib",
"README.md",
"package.json"
],
"scripts": {
"test": "kuta",
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"ci": "npm run lint && npm test"
}
}