forked from jsonata-js/jsonata-exerciser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 869 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
38
39
40
41
{
"name": "jsonata-exerciser",
"version": "1.0.0",
"main": "app.js",
"homepage": "http://try.jsonata.org/",
"scripts": {
"start": "node app.js",
"postinstall": "npm run browserify",
"browserify": "browserify public/scripts/exerciser.js -o public/scripts/bundle.js"
},
"license": "MIT",
"keywords": [
"JSONata",
"Exerciser",
"JSON",
"query",
"transformation",
"transform",
"mapping",
"path"
],
"dependencies": {
"express": "^4.16.2",
"ejs": "^2.5.7",
"cloudant": "^1.10.0",
"body-parser": "^1.18.2",
"method-override": "^3.0.0",
"morgan": "^1.9.0",
"errorhandler": "^1.5.0",
"codemirror": "^5.19.0",
"moment": "^2.20.1",
"jsonata": "^1.5.0",
"shortid": "^2.2.8"
},
"devDependencies": {
"browserify": "^16.2.2"
},
"engines": {
"node": "6.x"
}
}