-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 983 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
37
38
{
"name": "kintone-config-helper",
"version": "0.0.1",
"description": "",
"engines": {
"node": ">=10"
},
"main": "dist/kintone-config-helper.js",
"scripts": {
"fix:lint": "npm run lint:tslint -- --fix",
"lint:ts": "tsc --noEmit",
"lint:tslint": "tslint **/*.ts",
"lint": "run-p lint:*",
"rollup": "rollup -c rollup.config.js",
"rollup:watch": "npm run rollup -- --watch",
"start": "run-p tsc:watch rollup:watch",
"build": "run-p tsc rollup",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"tsc:watch": "npm run tsc -- --watch"
},
"keywords": [
"kintone"
],
"author": "kintone",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rollup": "^0.68.2",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.12.0",
"tslint": "^6.1.2",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}