-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "adsense-notifier",
"version": "0.0.1",
"main": "dest/index.js",
"repository": "git@github.com:cosnomi/adsense-notifier.git",
"author": "Cosnomi <cosnomi@cosnomi.com>",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"prebuild": "sed -i -e 's/version: '\\''v1_4'\\''/version: '\\''v1.4'\\''/g' ./node_modules/googleapis/build/src/apis/adsense/v1.4.d.ts",
"test": "npx jest",
"start": "npx tsc && node dest/index.js",
"local-start": "npx tsc && node dest/local"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.0",
"@types/readline-sync": "^1.4.3",
"dotenv": "^8.0.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.1"
},
"dependencies": {
"axios": "^0.18.1",
"googleapis": "^39.2.0",
"readline-sync": "^1.4.9",
"zaim": "^2.2.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
}
}