This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
forked from adjohnston/react-stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "react-stencil",
"version": "0.9.0",
"description": "",
"main": "dist/stencil.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"build": "webpack -p",
"build:watch": "webpack -w",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adjohnston/react-stencil.git"
},
"author": "Adam Johnston",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.3.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^4.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^4.2.3",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"jest": "^19.0.2",
"prop-types": "^15.5.6",
"react": "^15.6.1",
"react-test-renderer": "^15.6.1",
"webpack": "^2.7.0"
},
"dependencies": {
"lodash.merge": "^4.6.0"
},
"jest": {
"moduleNameMapper": {
"^src(.*)$": "<rootDir>/src$1"
},
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"collectCoverageFrom": [
"src/**/*.js"
]
}
}