This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
63
64
{
"name": "react-feature-decorator",
"version": "1.0.0",
"description": "A way to define features in React applications",
"main": "src/index.js",
"repository": "[email protected]:digiaonline/react-feature-decorator.git",
"author": "Christoffer Niska <[email protected]>",
"license": "MIT",
"scripts": {
"ci": "npm-run-all lint test:cover",
"compile": "babel --loose es6.modules -d lib/ src/",
"flow": "flow src",
"flow-typed": "flow-typed install",
"lint": "eslint src",
"precommit": "npm-run-all lint test",
"prepublish": "npm-run-all lint compile",
"test": "jest src",
"test:cover": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^4.9.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.57.3",
"flow-typed": "^2.2.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"npm-run-all": "^4.1.1",
"prettier-eslint": "^8.2.1",
"react": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-flow-types": "^0.2.0-beta.3"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
]
}
}