-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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
{
"name": "feathers-action-react",
"version": "2.3.0",
"description": "connect feathers-action to react data containers",
"main": "index.js",
"scripts": {
"start": "node-dev example",
"test:deps": "dependency-check . --detective detective-es6 && dependency-check . --extra --no-dev -i es2040",
"test:lint": "standard",
"test:node": "NODE_ENV=test ava",
"test:coverage": "NODE_ENV=test nyc npm run test:node",
"test:coverage:report": "nyc report --reporter=lcov npm run test:node",
"test": "npm-run-all -s test:node test:lint test:deps"
},
"browserify": {
"transform": [
"es2040"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahdinosaur/feathers-action-react.git"
},
"keywords": [],
"author": "Mikey <michael.williams@enspiral.com> (http://dinosaur.is)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ahdinosaur/feathers-action-react/issues"
},
"homepage": "https://github.com/ahdinosaur/feathers-action-react#readme",
"devDependencies": {
"ava": "^0.19.1",
"dependency-check": "^2.8.0",
"detective-es6": "^1.1.6",
"node-dev": "^3.1.3",
"npm-run-all": "^4.0.1",
"nyc": "^10.1.2",
"standard": "^8.6.0"
},
"dependencies": {
"es2040": "^1.2.6",
"incremental-id": "^1.0.0",
"ramda": "^0.23.0",
"react": "^15.5.4",
"react-redux": "^5.0.4",
"recompose": "^0.24.0",
"redux": "^3.6.0"
}
}