-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "ci-test",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel index.jsx -o index.js && babel test/test.jsx -o test/test.js",
"test": "mocha",
"pretest": "npm run build"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": false
}
],
"@babel/preset-react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtrelogan/ci-test.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtrelogan/ci-test/issues"
},
"homepage": "https://github.com/dtrelogan/ci-test#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"mocha": "^7.0.1"
},
"dependencies": {
"raf": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-formstate-fp": "^1.0.0",
"react-formstate-validation": "^0.3.8"
}
}