-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.72 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
{
"name": "redux-pathspace",
"version": "7.0.1",
"description": "",
"main": "dist/redux-pathspace.js",
"scripts": {
"clean": "if [ -d ./dist ]; then rm -rf ./dist ; fi && if [ -d ./tmp ]; then rm -rf ./tmp ; fi && mkdir dist",
"test": "npm run eslint && npm run build && tape src/redux-pathspace.spec.js",
"testbrk": "npm run eslint && npm run build && node --inspect-brk ./node_modules/.bin/tape src/redux-pathspace.spec.js",
"eslint": "eslint src/redux-pathspace.js",
"build": "babel src/redux-pathspace.js -d dist",
"pretest": "npm run clean",
"prepublishOnly": "npm run test"
},
"keywords": [
"redux",
"lens",
"lenses",
"ramda",
"paths",
"namespace",
"react",
"state",
"state management",
"reducer",
"reducers",
"flux",
"flux standard actions",
"FSA",
"action",
"actions",
"action type",
"action types"
],
"author": "Justin Stone",
"bugs": {
"url": "https://github.com/jpstone/redux-pathspace/issues"
},
"homepage": "https://github.com/jpstone/redux-pathspace",
"repository": {
"type": "git",
"url": "https://github.com/jpstone/redux-pathspace.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.46",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"browserify": "^14.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"redux": "^4.0.0",
"tape": "^4.9.0"
},
"dependencies": {
"ramda": "^0.25.0",
"lodash.isplainobject": "^4.0.6"
}
}