-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.54 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
66
67
68
{
"name": "ooplie",
"description": "Program in English",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/1j01/ooplie.git"
},
"bugs": {
"url": "https://github.com/1j01/ooplie/issues"
},
"author": "Isaiah Odhner <isaiahodhner@gmail.com>",
"license": "GPL-3.0",
"keywords": [
"ooplie",
"dooplie",
"object-oriented",
"programming",
"language",
"programming-language",
"program",
"natural-language",
"natural-language-programming",
"NLP",
"multi-paradigm",
"imperative",
"natural",
"command",
"interpret",
"interpreter",
"english",
"dynamic",
"lingual",
"engine",
"algebra",
"math",
"maths",
"mathematics",
"scripting",
"scripting-language",
"script",
"web"
],
"main": "ooplie.js",
"bin": {
"ooplie": "./bin/ooplie-cli.js"
},
"engines": {
"node": ">=7"
},
"scripts": {
"prepublish": "browserify --transform coffeeify --extension=\".coffee\" ./src/ooplie.coffee --outfile ooplie.js --standalone Ooplie",
"dev": "watchify --verbose --transform coffeeify --extension=\".coffee\" ./src/ooplie.coffee --outfile ooplie.js --standalone Ooplie",
"test": "mocha --compilers coffee:coffeescript/register --ui tdd tests/"
},
"devDependencies": {
"browserify": "^16.2.2",
"chai": "^4.1.2",
"coffeeify": "^3.0.1",
"coffeescript": "^2.3.1",
"mocha": "^5.2.0",
"watchify": "^3.11.0"
},
"dependencies": {
"minimist": "^1.2.0"
}
}