forked from pimterry/typesafe-get
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "@ovotech/typesafe-get",
"description": "A typesafe way to get nested properties when any parent property might be undefined, while we wait for the optional chaining operator to finally exist",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"source": "src/index.ts",
"types": "dist/types/index.d.ts",
"repository": "git@github.com:ovotech/typesafe-get.git",
"author": "Tim Perry <pimterry@gmail.com>",
"contributors": [
"Ivan Kerin <ikerin@gmail.com>"
],
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build-cjs": "tsc --outDir dist/cjs/",
"build-es": "tsc --outDir dist/es/ --module esnext --declaration --declarationDir dist/types/",
"build": "yarn build-cjs && yarn build-es"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"jest-junit": "^3.6.0",
"prettier": "^1.12.0",
"ts-jest": "^23.6.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.15.0",
"typescript": "^2.8.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost/"
},
"dependencies": {}
}