-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "reasons",
"version": "1.1.5",
"description": "Argument Mapping in your browser",
"main": "reasons.js",
"dependencies": {
"array-difference": "0.0.2",
"array-flatten": "^2.1.2",
"array-intersection": "^0.1.2",
"array-unique": "^0.3.2",
"hammerjs": "^2.0.8",
"keycode": "^2.2.0"
},
"devDependencies": {
"browserify": "16.5.1",
"canvas": "2.8.0",
"jsdom": "11.0.0",
"mocha": "8.3.0",
"npm": "7.20.6",
"request": "2.88.2",
"should": "^11.2.1",
"uglify-es": "^3.3.9",
"yamljs": "^0.2.10"
},
"scripts": {
"build": "browserify lib/reasons.js -s Reasons -o reasons.js",
"deploy": "./deploy.sh",
"minify": "npm run build && uglifyjs reasons.js -o reasons.min.js",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davekinkead/reasons.git"
},
"keywords": [
"argument mapping",
"logic",
"philosophy"
],
"author": "Dave Kinkead",
"license": "MIT",
"bugs": {
"url": "https://github.com/davekinkead/reasons/issues"
},
"homepage": "https://github.com/davekinkead/reasons#readme"
}