-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "animators-pal",
"version": "0.1.150228",
"description": "A twitter bot, for animators",
"main": "main.js",
"scripts": {
"postinstall": "npm build",
"build": "tsc --build tsconfig.json --pretty ",
"build:watch": "tsc --build tsconfig.json --pretty --watch",
"start": "pm2 start animators-pal.json",
"clean": "rm -rf dist",
"test": "jest"
},
"dependencies": {
"@types/lodash": "^4.14.121",
"@types/twit": "^2.2.21",
"inversify": "^5.0.1",
"lodash": "^4.17.11",
"pm2": "^3.2.9",
"reflect-metadata": "^0.1.13",
"twit": "^2.2.11"
},
"prettier": {
"semi": false,
"trailingComma": "all",
"tabWidth": 2
},
"author": "Georg Graf",
"devDependencies": {
"@types/jest": "^24.0.0",
"jest": "^24.1.0",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1",
"typescript-tslint-plugin": "^0.3.1"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}