-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 909 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": "suitescript-boilerplate",
"version": "1.1.3",
"description": "",
"scripts": {
"build": "npm test && babel src --out-dir dist",
"lint": "eslint src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && jest --coverage",
"watch:build": "npm run build -- --watch"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^23.4.2",
"babel-plugin-transform-es2015-modules-simple-desctructure-amd": "^0.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.5.0"
},
"eslintIgnore": [
"dist/*"
],
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"keywords": [],
"author": "",
"license": "MIT"
}