-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "frameworkless",
"version": "1.1.0",
"authors": [
"Jason Miller <[email protected]>"
],
"description": "A simple, flexible framework for developing medium complexity web application frontends.",
"main": "server.js",
"scripts": {
"build": "grunt",
"test": "grunt && grunt test",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "[email protected]:synacorinc/frameworkless.git"
},
"keywords": [
"frameworkless",
"events",
"router",
"util"
],
"license": "BSD 3-Clause",
"homepage": "http://synacorinc.github.io/frameworkless/",
"dependencies": {
"compression": "^1.4.4",
"express": "~4.12.4",
"serve-static": "^1.9.3"
},
"readmeFilename": "README.md",
"directories": {
"doc": "docs"
},
"devDependencies": {
"grunt-contrib-uglify": "~0.9.1",
"grunt": "^0.4.5",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-jshint": "~0.11.2",
"grunt-jsdoc-plugin": "~0.1.4",
"grunt-jsdoc": "^0.5.7",
"jsdoc": "^3.3.0-alpha9",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha": "^0.4.12",
"grunt-cli": "^0.1.13"
}
}