-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "conditional-elements",
"version": "0.0.1",
"description": "Conditional elements in array and object",
"main": "index.js",
"scripts": {
"clean": "rimraf lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alizhdanov/Conditionals.git"
},
"author": "Ali Zhdanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/alizhdanov/Conditionals/issues"
},
"homepage": "https://github.com/alizhdanov/Conditionals#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2"
},
"dependencies": {}
}