-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 916 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
42
43
44
{
"name": "fra",
"version": "0.0.4",
"description": "Object model mapper written in TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/patwritescode/fra",
"author": "@patwritescode",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"lint": "tslint --project . --fix",
"test": "jest",
"prepublish": "npm test && npm run lint && npm run build"
},
"devDependencies": {
"@types/jest": "^23.1.0",
"jest": "^23.1.0",
"rollup": "^0.60.2",
"rollup-plugin-typescript2": "^0.14.0",
"ts-jest": "^22.4.6",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}