-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-mutate",
"version": "0.3.0",
"main": "index.js",
"description": "Easily add user-defined extensions into your react application",
"repository": "https://github.com/Flaque/react-mutate.git",
"author": "@flaque",
"scripts": {
"test": "jest",
"prepare-release": "git checkout master && git pull --rebase origin master && lerna updated",
"release": "npm run prepare-release && lerna publish --exact",
"bootstrap": "lerna bootstrap"
},
"license": "MIT",
"jest": {
"collectCoverage": true,
"coverageDirectory": "<rootDir>/coverage",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/build/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
],
"coverageReporters": [
"text",
"lcov"
]
},
"keywords": [
"react",
"extensions",
"extension",
"mutate",
"plugin",
"plugins"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"isfunction": "^0.0.6",
"jest": "^21.2.1",
"lerna": "^2.3.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"sinon": "^4.1.2"
},
"dependencies": {
"@sindresorhus/is": "^0.2.1"
}
}