This repository has been archived by the owner on May 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "miraiken-event-201803-analyse",
"version": "1.0.0",
"description": "201803イベントのアンケートの解析用Script",
"main": "index.js",
"author": "yumetodo",
"license": "MIT",
"bugs": {
"url": "https://github.com/miraiken/event-201803-analyse/issues"
},
"homepage": "https://github.com/miraiken/event-201803-analyse#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/miraiken/event-201803-analyse.git"
},
"keywords": [
"gas",
"google-apps-script",
"clasp"
],
"scripts": {
"lint": "tslint src/**/*.ts",
"lint:fix": "tslint --fix src/**/*.ts",
"test:jest": "jest",
"test": "npm-run-all --parallel test:jest lint",
"clean": "rimraf dist",
"build:pre": "npm-run-all --parallel lint:fix clean",
"build:webpack": "webpack",
"build:resource": "cpx src/appsscript.json dist",
"build:main": "npm-run-all --parallel build:webpack build:resource",
"build": "npm-run-all -s build:pre build:main",
"deploy:push": "clasp push",
"deploy": "npm-run-all -s build deploy:push"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(src/.+(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@types/google-apps-script": "0.0.24",
"@types/jest": "^23.1.0",
"babel-loader": "^8.0.0-beta.2",
"cpx": "^1.5.0",
"gas-webpack-plugin": "^0.3.0",
"jest": "^22.4.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.2",
"ts-loader": "^4.2.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.6"
},
"dependencies": {
"babel-plugin-minify-dead-code-elimination": "^0.4.0",
"babel-plugin-transform-minify-booleans": "^6.9.1",
"babel-preset-gas": "^1.0.1",
"object-type-traits": "^1.0.2"
}
}