-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.53 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": "ramda-logic",
"version": "0.1.0",
"description": "A microKanren implementation",
"author": "Michael Hurley <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/buzzdecafe/ramda-logic.git"
},
"main": "index.js",
"bin": {
"mocha": "node_modules/mocha/bin/mocha"
},
"jshintConfig": {
"eqnull": true
},
"scripts": {
"lint": "eslint \"src/**\" \"test/**\"",
"test": "npm run lint && mocha --require babel-polyfill --require babel-register --require test/helpers/babel.js",
"watch": "npm run lint && mocha --compilers js:babel-register --watch --watch-extensions js"
},
"keywords": [
"logic",
"kanren",
"microkanren",
"minikanren"
],
"bugs": {
"url": "https://github.com/buzzdecafe/ramda-logic/issues"
},
"homepage": "https://github.com/buzzdecafe/ramda-logic",
"dependencies": {
"ramda": "0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-register": "^6.26.0",
"chai": "2.1.0",
"eslint": "4.18.2",
"mocha": "10.2.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"union-type": "^0.4.1"
}
}