-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "chipper",
"version": "0.0.0-development",
"description": "A static analysis tool for JavaScript which examines surface area of ES6 modules throughout your codebase",
"main": "index.js",
"scripts": {
"test": "jest .",
"lint": "eslint . --fix -c .eslintrc --ignore-path .eslintignore",
"precommit": "yarn lint",
"prepush": "yarn test",
"semantic-release": "semantic-release"
},
"bin": {
"chipper": "./index.js"
},
"author": "Ersel Aker",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^25.0.0",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.6.0"
},
"dependencies": {
"acorn": "^5.5.3",
"acorn-jsx": "^4.1.1",
"acorn5-object-spread": "^5.1.2",
"caporal": "^1.3.0",
"glob": "^7.1.2",
"object-hash": "^1.3.0",
"ramda": "^0.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ersel/Chipper.git"
}
}