-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 981 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
43
{
"name": "nodejs-model",
"description": "A simple, minimalistic object model for nodejs",
"version": "0.1.6",
"keywords": [
"model",
"schema",
"validations"
],
"author": {
"name": "Asaf Shakarchi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/asaf/nodejs-model"
},
"bugs": {
"url": "https://github.com/asaf/nodejs-model/issues"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/test.coffee",
"compile": "rm -rf ./compiled/* ; ./node_modules/coffee-script/bin/coffee -o compiled/ -c lib/"
},
"main": "module.js",
"dependencies": {
"validator": "~1.4.0",
"coffee-script": "1.4.0",
"q": "~0.9.6",
"underscore": "~1.5.1",
"stampit": "~0.5.1",
"chai-extras": "~1.1.0",
"underscore.string": "~2.3.3"
},
"devDependencies": {
"mocha": "*",
"chai": "*"
},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}