-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 987 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 987 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
34
35
36
37
38
39
40
41
{
"name": "jsdig",
"version": "0.1.6",
"description": "Based on Ruby's hash#dig",
"main": "./lib/index.js",
"scripts": {
"test": "mocha --require @babel/register",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"build": "BABEL_ENV=production babel src --out-dir lib",
"prepare": "npm run test && npm run build"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devchris/jsdig.git"
},
"keywords": [
"javascript",
"ruby",
"dig",
"hash",
"optional",
"chaining",
"safe",
"navigation"
],
"author": "Christoph Drechsler <christoph@planubo.com>",
"license": "MIT",
"homepage": "https://github.com/devchris/jsdig#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"mocha": "^7.1.1"
}
}