-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 KB
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
{
"name": "thicket",
"description": "Strong typed language dedicated to backend and web application design",
"license": "LGPL-2.1",
"version": "0.1.0",
"homepage": "https://github.com/d-plaindoux/thicket",
"author": {
"name": "Didier Plaindoux",
"email": "d.plaindoux@free.fr",
"url": "d.plaindoux.free.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/d-plaindoux/thicket"
},
"bugs": {
"url": "https://github.com/d-plaindoux/thicket/issues"
},
"licenses": [
{
"type": "LGPL2",
"url": "https://github.com/d-plaindoux/thicket/blob/master/LICENSE-LGPL2"
}
],
"main": "src",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt default && grunt --gruntfile Gruntfile_Coverage.js && cat lib-cov/report | coveralls"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-exec": "~0.4.6",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-coveralls": "~1.0.0",
"grunt-jscoverage": "~0.1.3",
"grunt-env": "~0.4.2",
"browserify":"~9.0.3",
"grunt-contrib-uglify": "~0.6.0",
"jscoverage": "~0.5.9",
"coveralls": "~2.11.2",
"nodeunit": "~0.9.0"
},
"dependencies": {
"colors": ">= 1.0.3",
"yargs": ">= 3.7.2",
"node-jsdom": ">= 3.1.5"
},
"keywords": []
}