-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.34 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
{
"name": "universal-anitracker",
"version": "1.0.0",
"description": "",
"main": "node/index.js",
"types": "lib/@types/types.d.ts",
"scripts": {
"dev": "webpack --watch",
"test": "jest",
"deploy": "webpack -p",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"lint": "tslint '{lib,test}/**/*.ts'",
"format": "npm run lint -- --fix && prettier --write ./{lib,test}/**/*.ts"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"anilist",
"kitsu",
"anime",
"user"
],
"author": "",
"license": "MIT",
"dependencies": {
"aniwrapper": "^1.0.1",
"client-oauth2": "^4.2.1",
"kitsu": "^5.2.0"
},
"devDependencies": {
"@types/jest": "^23.1.5",
"@types/lodash": "^4.14.110",
"@types/node": "^10.5.2",
"cypress": "^3.8.1",
"dotenv": "^6.0.0",
"jest": "^24.9.0",
"prettier": "^1.13.7",
"ts-jest": "^24.2.0",
"ts-loader": "^4.4.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^2.9.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}