-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 972 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 972 Bytes
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
{
"name": "test-demo",
"version": "1.0.0",
"description": "test demo",
"main": "index.js",
"scripts": {
"start": "parcel index.html",
"test:unit": "jest ./test/unit/*.test.js --detectOpenHandles"
},
"keywords": [
"test"
],
"author": "lanmingming",
"license": "MIT",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"fetch-mock": "^6.5.2",
"jest": "^23.5.0",
"jest-html-reporter": "^2.4.2",
"jsdom": "^11.12.0",
"parcel-bundler": "^1.9.7",
"sinon": "^6.1.4"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>test/setup.js",
"testEnvironment": "node"
}
}