This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "ts-get",
"version": "1.0.5",
"description": "Alternative to lodash.get that makes it typed and cool as if optional chaining proposal is there",
"main": "lib/index.node.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/RIP21/ts-get.git",
"author": "Andrii Los <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"lint": "prettier --write ./**/*.ts",
"prebuild": "rimraf lib",
"build": "tsc && babel src/index.ts --out-file lib/index.node.js",
"test": "jest src --coverage",
"test:codecov": "jest src --coverage && codecov",
"prepublish": "yarn build",
"release": "np"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-typescript": "^7.3.3",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.3.4",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"codecov": "^3.2.0",
"jest": "^24.5.0",
"lodash": "^4.17.11",
"np": "^4.0.2",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"files": [
"lib",
"README.md"
],
"babel": {
"comments": false,
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
],
"@babel/preset-typescript"
]
}
}