-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.08 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": "anidb",
"private": true,
"version": "0.0.1",
"description": "AniDB",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"start.sw": "npm run start --service-worker",
"test": "jest",
"test.watch": "jest --watch"
},
"dependencies": {
"@ionic/core": "4.11.5",
"@stencil/core": "1.8.1",
"lodash": "4.17.15"
},
"devDependencies": {
"@types/jest": "24.0.23",
"jest": "24.9.0",
"workbox-build": "4.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fdom92/anidb.git"
},
"author": "Fernando del olmo martín",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fdom92/anidb"
},
"homepage": "https://github.com/Fdom92/anidb",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}