-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.14 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
{
"name": "@silverstripe/react-injector",
"description": "A dependency injection layer for sharing components between React applications",
"version": "0.2.0",
"main": "dist/injector.js",
"scripts": {
"dev": "webpack",
"watch": "webpack --watch",
"build": "webpack -p",
"test": "jest"
},
"dependencies": {
"classnames": "^2.2.6",
"core-js": "^3.1.4",
"merge": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"toposort": "^2.0.2"
},
"devDependencies": {
"@silverstripe/webpack-config": "^0.12.0",
"babel-jest": "^24.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest-cli": "^24.1.0",
"mime": "^1.4.1"
},
"jest": {
"roots": [
"src"
],
"moduleDirectories": [
"src",
"node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
"react"
],
"plugins": [
"transform-object-rest-spread"
]
}
}