-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
{
"name": "DiagramArtEmbedded",
"version": "2.0.0",
"private": true,
"dependencies": {
"enzyme": "^3.1.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-scripts": "1.0.17",
"react-tabs": "^2.1.0",
"sinon": "^4.1.2",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"test-coverage": "jest && ./node_modules/.bin/codecov",
"eject": "react-scripts eject"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.4",
"jest": "^21.2.1",
"react-test-renderer": "^16.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/enzyme.js",
"setupFiles": [
"<rootDir>/__jest__/shim.js"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/SyntheticSpheres/DiagramArt---Embedded"
}
}