-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2.16 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
62
63
64
65
66
{
"name": "react-craftform",
"version": "1.7.4",
"description": "React form with full customizable and extensible. This library help you create form with your own style.",
"main": "dest/cf_form.es6.js",
"scripts": {
"test": "mocha --require buildscripts/testsetup.js \"src/**/*.spec.js\"",
"test:watch": "npm run test -- --watch",
"build": "rollup -c ./rollup.config.es6.js",
"buildprod": "rollup -c ./rollup.config.es6.js && rollup -c ./rollup.config.umd.js",
"build:watch": "npm run build -- -w",
"start": "npm-run-all --parallel test:watch lint:watch build:watch",
"lint": "esw src --color",
"lint:watch": "npm run lint -- --watch",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elecweb/react-craftform.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elecweb/react-craftform/issues"
},
"homepage": "https://github.com/Elecweb/react-craftform#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"cheerio": "^1.0.0-rc.2",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"eslint-watch": "^3.1.2",
"istanbul": "^0.4.5",
"jsdom": "11.2.0",
"jsdom-global": "3.0.2",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"sinon": "^3.2.1"
},
"nyc": {
"include": "src",
"exclude": "**/*.spec.js"
}
}