-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
63 lines (63 loc) · 1.71 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "backlog-bulk-issue-registration-gas",
"version": "2.5.2",
"description": "",
"main": "index.js",
"scripts": {
"watch": "webpack --watch",
"lint": "tslint --fix src/**/*.ts",
"lint:ci": "tslint src/**/*.ts",
"test": "jest",
"testw": "jest --watchAll",
"test:ci": "jest --reporters default --reporters jest-junit",
"build": "npm run lint && npm run test && webpack",
"build:ci": "npm run lint:ci && npm run test:ci && webpack",
"push": "npm run build && clasp push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nulab/backlog-bulk-issue-registration-gas.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nulab/backlog-bulk-issue-registration-gas/issues"
},
"homepage": "https://github.com/nulab/backlog-bulk-issue-registration-gas#readme",
"devDependencies": {
"@types/google-apps-script": "1.0.20",
"@types/jest": "^26.0.19",
"gas-webpack-plugin": "^1.2.2",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.1",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.13",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.1.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.3.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"jest-junit": {
"output": "reports/js-test-results.xml"
}
}