-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "gas-combination-test-case-generator",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"test": "NODE_ENV=test jest",
"setup": "rm -f .clasp.json && clasp create --type sheets --title 'gas-CombinationTestCaseGenerator' --rootDir ./dist",
"build": "npm run lint && rimraf dist && webpack && cpx src/appsscript.json dist",
"setup:use-id": "clasp setting scriptId",
"deploy": "npm run build && clasp push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kemsakurai/gas-CombinationTestCaseGenerator.git"
},
"keywords": [
"gas",
"google-apps-script",
"clasp",
"combinationtest",
"one-wise",
"pair-wise"
],
"author": "kemsakurai",
"license": "MIT",
"bugs": {
"url": "https://github.com/kemsakurai/gas-CombinationTestCaseGenerator/issues"
},
"homepage": "https://github.com/kemsakurai/gas-CombinationTestCaseGenerator#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cpx": "^1.5.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"gas-webpack-plugin": "^1.0.4",
"html-loader": "^0.5.5",
"jest": "^24.8.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@types/google-apps-script": "0.0.53",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.54",
"es6-promise": "^4.2.8",
"es6-shim": "^0.35.5",
"js-md5": "^0.7.3",
"merge": ">=1.2.1",
"npm": "^6.14.8",
"promise-polyfill": "^8.1.3",
"randomatic": ">=3.0.0",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.2",
"typescript-map": "0.0.7"
}
}