-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1007 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
{
"name": "golem",
"version": "0.3.0",
"private": "true",
"description": "GOLEM signifie Gestion, Organisation Libres Et Modulaires. It can mean Good Old and Libre Entity Management or Group Organization with Libre, Especially Modular software.",
"main": "golem.js",
"scripts": {
"copy": "./scripts/copy.sh",
"compile": "cd public && coffee -mc scripts/",
"coffeewatch": "cd public && coffee -mcw scripts/",
"lint": "find public/ -name *.coffee -exec coffeelint {} \\;",
"doc": "docco -o doc ./public/scripts/**/*.litcoffee",
"test": "node ./tests/*.js",
"default": "npm run compile && npm run lint"
},
"keywords": [
"webapp"
],
"author": "Fabien Bourgeois",
"license": "MPL",
"dependencies": {
"body-parser": "^1.9.0",
"express": "^4.9.5",
"express-pouchdb": "^0.5.10",
"pouchdb": "^3.0.6",
"validate.js": "^0.3.1"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"coffeelint": "^1.6.0",
"docco": "^0.6.3"
}
}