-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.52 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.52 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
{
"name": "json-validator",
"description": "Validator for JSON objects with complex structure",
"version": "0.1.0",
"author": {
"name": "JS zombies"
},
"main": "src/index.js",
"license": "MIT",
"scripts": {
"build": "webpack --mode=production",
"compile": "babel ./src --out-dir ./lib --copy-files --ignore \"./**/*.test.js\"",
"lint": "eslint --fix --ext .js* src/*",
"test": "jest --watch --verbose false",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-dom": "^16.5.1"
}
}