-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
{
"name": "get-optional",
"version": "2.0.3",
"description": "Small and typesafe object property navigation for TypeScript and Flow",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"build": "yarn run build:runtime --module es2015 && mv lib/index.js lib/index.mjs && yarn build:runtime && yarn run build:types",
"build:types": "ts-node --project tsconfig.json build/index.ts",
"build:runtime": "tsc --project src/tsconfig.json",
"prepublishOnly": "yarn build",
"debug": "nodemon --watch build -e ts --exec yarn build",
"pretest": "yarn build && yarn --no-lockfile --cwd tests/typings/testbed",
"test": "jest",
"lint": "tslint --project .",
"prebenchmark": "yarn run build:runtime",
"benchmark": "node tests/benchmark/run-all.js"
},
"keywords": [
"safe",
"navigation",
"property",
"typesafe",
"typescript",
"flow",
"optional chaining",
"get",
"undefined",
"null"
],
"author": "noppa",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^23.1.3",
"@types/lodash": "^4.14.116",
"@types/node": "^10.5.1",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"benchmark": "^2.1.4",
"flow-bin": "^0.77.0",
"jest": "^23.5.0",
"lodash": "^4.17.10",
"nodemon": "^1.18.3",
"ts-jest": "^23.1.3",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.0.3"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"lib/index.mjs",
"lib/index.js.flow"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/noppa/get-optional.git"
},
"bus": {
"url": "https://github.com/noppa/get-optional/issues"
}
}