-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "get-deep-value",
"version": "1.1.4",
"description": "Safely retrieve a Javascrpt value from a nested array and/or object ",
"main": "index.js",
"scripts": {
"test": "nyc ts-mocha --require @babel/register \"./src/**/*.ts\"",
"prebuild": "rm -rf lib && tsc --emitDeclarationOnly",
"build": "babel src --out-dir lib --extensions \".ts\"",
"postbuild": "cp package.json lib && cp README.md lib",
"prepublishOnly": "echo \"Publish must be run from the ./lib folder\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JTessmer/get-deep-value.git"
},
"author": "Jesse Tessmer",
"license": "MIT",
"bugs": {
"url": "https://github.com/JTessmer/get-deep-value/issues"
},
"homepage": "https://github.com/JTessmer/get-deep-value#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.5",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/mocha": "^8.0.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.7"
}
}