-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "pimm",
"version": "1.0.1",
"homepage": "https://github.com/stevenschobert/pimm",
"description": "An easy-going web framework for Node.",
"main": "lib/pimm.js",
"scripts": {
"start": "node ./example/application.js",
"test": "./node_modules/.bin/jshint --reporter ./node_modules/jshint-stylish/index.js lib/** lib/**/** test/** test/**/** && ./node_modules/.bin/mocha -R spec test/** test/**/**"
},
"repository": {
"type": "git",
"url": "git://github.com/stevenschobert/pimm.git"
},
"author": "Steven Schobert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenschobert/pimm/issues"
},
"dependencies": {
"bluebird": "^3.3.4",
"keylime": "^1.0.0",
"lodash": "^4.6.1",
"mach": "^1.3.8",
"recursive-readdir": "^1.1.3",
"consolidate": "^0.14.0"
},
"devDependencies": {
"assert": "^1.3.0",
"mocha": "^2.2.5",
"jshint-stylish": "^2.0.1",
"jshint": "^2.5.2",
"supertest": "^1.0.0",
"jade": "^1.11.0"
}
}