This repository was archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
{
"name": "netiam-filter",
"description": "A query language for filtering",
"main": "lib/index.js",
"scripts": {
"build": "./bin/build",
"clean": "./bin/clean",
"lint": "./bin/lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run watch",
"test": "npm run test:unit",
"test:unit": "mocha",
"test:coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
"watch": "./bin/watch"
},
"repository": {
"type": "git",
"url": "https://github.com/netiam/filter.git"
},
"keywords": [
"Filter",
"OData",
"Query Language"
],
"author": "Hannes Moser <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/netiam/filter/issues"
},
"homepage": "https://github.com/netiam/filter#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-plugin-syntax-async-functions": "^6.1.18",
"babel-plugin-transform-async-to-generator": "^6.0.14",
"babel-preset-es2015-node5": "^1.1.0",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^4.1.0",
"istanbul": "^1.0.0-alpha.2",
"jison": "^0.4.15",
"mocha": "^4.0.1",
"semantic-release": "^11.0.2",
"should": "^13.1.0"
},
"dependencies": {
"lodash": "^4.0.0"
}
}