forked from dekdevy/hordes-loc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 844 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
{
"name": "hordes-loc",
"description": "Hordes.io string localization",
"main": "index.js",
"scripts": {
"generate": "rollup -f cjs -i build.js -o dist/build.js && node ./dist/build.js",
"missing": "rollup -f cjs -i missing.js -o dist/missing.js && node ./dist/missing.js",
"validate": "rollup -f cjs -i validate.js -o dist/validate.js && node ./dist/validate.js",
"lint": "eslint ./build.js ./validate.js ./missing.js ./loc ./random",
"lintfix": "eslint ./build.js ./validate.js ./missing.js ./loc ./random --fix",
"test": "npm run lint && npm run generate && npm run validate && npm run missing"
},
"author": "Hordes.io",
"license": "UNLICENSED",
"dependencies": {
"rollup": "^1.9.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0"
}
}