-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 914 Bytes
/
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
{
"name": "patternmaker",
"version": "0.0.3",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "prettier --write \"{public,src}/**/*.{ts,tsx,js,jsx,json,css}\""
},
"keywords": [
"patternweb"
],
"author": "John Rees <[email protected]>",
"license": "MPL-2.0",
"devDependencies": {
"@types/jest": "^21.1.10",
"@types/node": "^8.5.2",
"jest": "^22.0.4",
"prettier": "^1.9.2",
"ts-jest": "^22.0.0"
},
"dependencies": {
"typescript": "^2.6.2"
},
"jest": {
"setupFiles": [
"<rootDir>/support/tests/jest_shim.js"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}