-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "json-mask",
"version": "2.0.0",
"description": "Tiny language and engine for selecting specific parts of a JS object, hiding the rest.",
"main": "lib/index",
"files": [
"bin",
"build",
"lib"
],
"scripts": {
"test": "npm run lint && mocha",
"test:all": "nve --parallel 14,16,18 mocha",
"test-watch": "mocha -w -G -R min",
"test-cov": "nyc --reporter=html --reporter=text mocha",
"lint": "standard 'lib/**/*.js' 'test/**/*.js' 'bin/**/*.js'",
"build-browser": "npm run-script _build-browser-full; npm run-script _build-browser-license; npm run-script _build-browser-min",
"_build-browser-full": "browserify -s jsonMask -e lib/index.js | sed -e \"s/\\[ *'.*' *\\]/;/\" > build/jsonMask.js",
"_build-browser-license": "cat build/copyright | cat - build/jsonMask.js | tee build/jsonMask.js",
"_build-browser-min": "cat build/jsonMask.js | uglifyjs --comments > build/jsonMask.min.js"
},
"bin": "bin/json-mask.js",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"mask",
"filter",
"select",
"fields",
"projection",
"query",
"json",
"cli"
],
"author": "nemtsov@gmail.com",
"license": "MIT",
"devDependencies": {
"browserify": "^17.0.0",
"mocha": "^10.0.0",
"nve": "^14.0.0",
"nyc": "^15.1.0",
"standard": "^15.0.1",
"uglify-js": "^3.15.4"
},
"eslintConfig": {
"rules": {
"no-var": "off"
}
},
"repository": {
"type": "git",
"url": "git://github.com/nemtsov/json-mask.git"
},
"dependencies": {}
}