-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "react-incrementor",
"version": "1.0.5",
"description": "Component for building flexible incrementor components",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"react",
"incrementor",
"accesibility"
],
"peerDependencies": {
"react": "^16.2.0",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.3",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.0",
"cross-env": "^5.0.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"eslint": "^4.1.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"npm-run-all": "^4.1.2",
"nyc": "^11.3.0",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.1"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "babel --copy-files --out-dir dist --ignore *.test.js src",
"lint": "eslint src",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"release": "npm publish",
"test": "cross-env BABEL_ENV=test nyc jest",
"validate": "npm-run-all --parallel lint test"
},
"repository": {
"type": "git",
"url": "https://github.com/mstaicu/react-incrementor.git"
},
"author": "Mircea Staicu <[email protected]>",
"license": "MIT"
}