-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
49
50
51
52
53
{
"name": "react-superforms",
"version": "1.2.11",
"homepage": "https://github.com/ekorzun/react-superform",
"author": {
"name": "Evgeny Korzun",
"email": "e.korzun@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ekorzun/react-superform.git"
},
"main": "dist/index.js",
"scripts": {
"prepublish": "yarn build",
"prebuild": "rm -rf ./dist && mkdir dist",
"build": "parcel build src/index.js --out-dir dist",
"dev": "parcel serve demo/index.html",
"test": "nyc mocha --timeout 30000 -R spec --require babel-register test/*.spec.js",
"pretest": "yarn run build"
},
"files": [
"dist"
],
"dependencies": {
"baobab": "^2.5.2",
"classnames": "^2.2.6"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-preset-airbnb": "^3.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"istanbul": "^0.4.5",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"mocha-clean": "^1.0.0",
"nyc": "^13.0.1",
"parcel-bundler": "^1.10.3",
"react": "^16.5.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.5.2",
"react-supermodel": "^1.2.23"
}
}