-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "hacksaw-react",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"prepublish": "npm run build",
"test": "jest --runInBand",
"test:dev": "jest --watchAll --runInBand",
"test:coverage": "jest --runInBand --coverage ; open ./coverage/lcov-report/index.html"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"hacksaw": "0.6.7",
"jest": "^25.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sinon": "^1.17.6"
},
"jest": {
"setupFilesAfterEnv": [
"./test/init.js"
]
},
"version": "0.6.2"
}