forked from 418sec/ganon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 947 Bytes
/
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
{
"name": "ganon",
"version": "2.0.30",
"main": "dist/index.js",
"types": "index.d.ts",
"repository": "git@github.com:BlakeGuilloud/ganon.git",
"author": "Blake Guilloud <blake.guilloud@gmail.com>",
"description": "A Javascript library",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.9.0",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2"
},
"scripts": {
"clean": "rimraf dist",
"build": "babel lib --out-dir dist",
"fix": "eslint ./lib ./test --fix",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --no-eslintrc -c .eslintrc ./lib ./test",
"prepublish": "npm run clean && npm run build"
},
"pre-commit": [
"lint"
]
}