-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.2 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
60
61
{
"name": "simple-complex",
"version": "0.1.8",
"description": "",
"repository": {
"type": "git",
"url": "git://github.com/anisometropie/complex.git"
},
"main": "src/Complex.js",
"scripts": {
"test": "jest"
},
"author": "Valentin Chanas",
"license": "ISC",
"babel": {
"plugins": [
[
"module-resolver",
{
"root": [
"./src"
]
}
],
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "^3.2.0",
"enzyme": "^3.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0"
}
}