-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 781 Bytes
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
{
"name": "access",
"version": "1.0.2",
"description": "Get deeply nested values from unknown shapes with at-runtime type safety.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Conor Davidson <conor@conordavidson.com>",
"license": "MIT",
"scripts": {
"build": "tsc --pretty",
"test": "jest --coverage",
"test:cover": "jest && codecov"
},
"jest": {
"testRegex": ".*/*.test.ts$",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.ts$": "ts-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"@types/jest": "^24.0.15",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}