forked from jsonata-js/jsonata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.95 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
{
"name": "jsonata",
"version": "1.4.1",
"description": "JSON query and transformation language",
"module": "jsonata.js",
"main": "jsonata-es5.js",
"typings": "jsonata.d.ts",
"homepage": "http://jsonata.org/",
"repository": {
"type": "git",
"url": "https://github.com/jsonata-js/jsonata.git"
},
"scripts": {
"pretest": "npm run lint",
"test": "node ./node_modules/istanbul/lib/cli.js cover --report cobertura --report html ./node_modules/mocha/bin/_mocha -- \"test/**/*.js\"",
"posttest": "npm run check-coverage && npm run minify && npm run babel && npm run browserify && npm run minify-es5",
"check-coverage": "istanbul check-coverage -statement 100 -branch 100 -function 100 -line 100",
"minify": "uglifyjs jsonata.js -o jsonata.min.js --compress --mangle",
"lint": "eslint .",
"doc": "jsdoc --configure jsdoc.json .",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"babel": "node ./node_modules/babel-cli/bin/babel.js --out-file jsonata-es5.js jsonata.js",
"browserify": "node ./node_modules/browserify/bin/cmd.js jsonata-es5.js --outfile jsonata-es5.js --standalone jsonata",
"minify-es5": "uglifyjs jsonata-es5.js -o jsonata-es5.min.js --compress --mangle"
},
"license": "MIT",
"keywords": [
"JSON",
"query",
"transformation",
"transform",
"mapping",
"path"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-runtime": "^6.23.0",
"browserify": "^14.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.0.0",
"eslint-plugin-ideal": "^0.1.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.2.0",
"request": "^2.81.0",
"uglify-es": "^3.0.20"
},
"engines": {
"node": ">= 4"
}
}