-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1004 Bytes
/
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
{
"name": "llang",
"description": "An interpreter of well-formed formulas in propositional calculus.",
"version": "0.0.2",
"author": "Petr Nevyhoštěný <[email protected]>",
"main": "index.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/nevyk/llang.git"
},
"keywords": [
"propositional",
"calculus",
"interpreter",
"formal",
"logic",
"language"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nevyk/llang/issues"
},
"homepage": "https://github.com/nevyk/llang",
"devDependencies": {
"expect.js": "~0.3.1",
"gulp": ">=3.6.2",
"gulp-beautify": "~1.1.0",
"gulp-clean": "~0.3.0",
"gulp-concat": "~2.2.0",
"gulp-deps-order": "^0.2.0",
"gulp-header": "~1.0.2",
"gulp-insert": "~0.3.0",
"gulp-jshint": "~1.6.1",
"gulp-mocha": "~0.4.1",
"gulp-rename": "~1.2.0",
"gulp-uglify": "~0.3.0",
"gulp-util": "~2.2.16"
}
}