-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.88 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
58
59
60
61
62
63
64
65
{
"name": "lps",
"version": "1.0.18",
"description": "Logic Production System (LPS) runtime implementation in JS for building browser or Node.js-based AI applications",
"main": "index.js",
"repository": "https://github.com/mauris/lps.js.git",
"keywords": [
"ai",
"logic",
"lps",
"library",
"language",
"compiler",
"interpreter"
],
"scripts": {
"test": "npm run test:source && npm run test:programs",
"test:browser": "echo TODO",
"test:source": "nyc --all --cache mocha --check-leaks --require ./test/init.js \"test/lps.js/**/*.test.js\"",
"test:source:fast": "mocha --require ./test/init.js \"test/lps.js/**/*.test.js\"",
"test:programs": "mocha --require ./test/init.js \"test/programs/**/*.test.js\"",
"lint": "eslint test src",
"build:browser": "rm -f dist/*.js && webpack",
"preversion": "npm test && npm run build:browser",
"postversion": "git push --tags && git push && npm run build:browser",
"prepublishOnly": "npm test",
"publish:alpha": "npm publish --tag alpha",
"publish:beta": "npm publish --tag beta",
"publish:latest": "npm publish"
},
"author": {
"name": "Sam Yong",
"email": "[email protected]",
"url": "http://mauris.sg/"
},
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^4.1.2",
"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",
"mocha": "^5.2.0",
"mocha-sinon": "^2.1.0",
"nyc": "^14.1.1",
"raw-loader": "^0.5.1",
"sinon": "^7.3.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"nyc": {
"exclude": [
"dist",
"examples",
"test",
"loaders/*.js",
"webpack.config.js"
],
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90
}
}