-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "jora-sandbox",
"version": "1.3.0",
"description": "Sandbox for Jora (a JSON query language)",
"author": "Roman Dvornov <[email protected]>",
"license": "MIT",
"repository": "discoveryjs/jora-sandbox",
"keywords": [
"jora",
"sandbox"
],
"main": "./index.js",
"scripts": {
"start": "discovery",
"lint": "eslint *.js src",
"test": "npm run lint",
"build": "npm run build:docs",
"build:dist": "discovery-build -o dist --single-file",
"build:docs": "discovery-build -o docs --clean",
"prepublishOnly": "npm run build:dist"
},
"discovery": "src/config.js",
"devDependencies": {
"@discoveryjs/discovery": "^1.0.0-beta.61",
"@discoveryjs/cli": "^2.0.0-beta.12",
"jora": "1.0.0-beta.5",
"eslint": "^7.31.0",
"mocha": "^8.3.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist",
"index.js"
]
}