-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 938 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 938 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
{
"name": "react-looper-component",
"version": "0.0.6",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"test": "jest"
},
"main": "./lib/index.js",
"license": "MIT",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/yosgo-opensource/react-looper-component.git"
},
"files": ["lib", "README.md", "react-looper-component.d.ts"],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"core-js": "^2.5.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"jest": "^21.2.1",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"webpack": "^3.6.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^15.0.0 || ^16.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}