forked from sbstjn/gatsby-disable-404
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "gatsby-disable-dev-404",
"version": "1.0.0",
"description": "Disable dev 404 pages for Gatsby websites",
"repository": {
"type": "git",
"url": "https://github.com/antoinegomez/gatsby-disable-dev-404"
},
"bugs": {
"url": "https://github.com/antoinegomez/gatsby-disable-dev-404/issues"
},
"homepage": "https://github.com/antoinegomez/gatsby-disable-dev-404",
"scripts": {
"test": "jest",
"test:cover": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "tslint {src,test}/**/*.ts",
"build": "tsc",
"prebuild": "rimraf ./gatsby-node.js"
},
"keywords": [
"gatsby",
"gatsby-plugin"
],
"author": "Sebastian Müller <mail@sbstjn.com>",
"contributors": [
{
"name": "Antoine Gomez",
"email": "antoine@gomez.lu",
"url": "https://github.com/antoinegomez"
}
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.5",
"@types/node": "^8.0.19",
"coveralls": "^2.13.1",
"dot-json": "^1.0.3",
"jest": "^20.0.4",
"rimraf": "^2.6.2",
"ts-jest": "^20.0.7",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}