forked from toolkit-for-ynab/toolkit-for-ynab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 704 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "toolkit-for-ynab",
"private": true,
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"chokidar": "^1.6.0",
"eslint": "^2.13.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.10.0"
},
"scripts": {
"eslint": "eslint -c source/.eslintrc.js --ignore-path source/.eslintignore source/",
"eslint-fix": "eslint -c source/.eslintrc.js --ignore-path source/.eslintignore source/ --fix",
"babel": "babel source --compact false --quiet --ignore source/common/res/features/lib/*,source/common/assets/*,*.min.js --out-dir src"
},
"babel": {
"presets": [
"es2015"
]
}
}