-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.38 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.38 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
49
50
51
52
53
54
55
56
{
"name": "lps-cli",
"version": "1.0.11",
"description": "Logic Production System (LPS) CLI Toolset",
"main": "index.js",
"keywords": [
"ai",
"logic",
"lps",
"cli",
"bin",
"language",
"compiler",
"interpreter"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint bin src",
"postversion": "git push --tags && git push",
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta",
"publish:latest": "npm publish"
},
"bin": {
"lps": "./bin/lps.js",
"lps-test": "./bin/test.js",
"lps-p2p-tracker": "./bin/tracker.js",
"lps-generate-spec": "./bin/generate-spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauris/lps-cli.git"
},
"author": {
"name": "Sam Yong",
"email": "samyonggit@gmail.com",
"url": "http://mauris.sg/"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mauris/lps-cli/issues"
},
"homepage": "https://github.com/mauris/lps-cli#readme",
"dependencies": {
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"lps": "^1.0.18"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-deprecate": "^0.5.4",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-promise": "^4.0.1"
}
}