-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
37 lines (37 loc) · 913 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
{
"name": "espresso.js",
"description": "Minimalistic MVC",
"version": "1.1.0",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/techlayer/espresso.js"
},
"homepage": "https://github.com/techlayer/espresso.js",
"bugs": {
"url": "https://github.com/techlayer/espresso.js/issues"
},
"main": "./espresso",
"devDependencies": {
"jshint": "latest",
"mocha": "latest",
"browserify": "latest",
"uglify-js": "latest"
},
"scripts": {
"lint": "jshint index.js",
"test": "mocha",
"prebuild": "npm run lint && npm run test",
"build": "browserify index.js --standalone Espresso | uglifyjs > espresso.min.js"
},
"keywords": [
"mvc"
],
"author": "Artemi Krymski <[email protected]> (http://krymski.com/)",
"license": "MIT",
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
}
}