-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 984 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
{
"name": "keylime",
"version": "1.0.0",
"description": "A delicious way to work with prototypes in JavaScript.",
"main": "lib/keylime.js",
"scripts": {
"test": "./node_modules/.bin/jshint --reporter ./node_modules/jshint-stylish/stylish.js lib/** test/** && ./node_modules/.bin/mocha -R spec test/**",
"bench": "./node_modules/.bin/matcha benchmarks.js",
"build": "./node_modules/.bin/uglifyjs lib/keylime.js -c -m -o dist/keylime.min.js"
},
"repository": {
"type": "git",
"url": "git://github.com/stevenschobert/keylime.git"
},
"author": "Steven Schobert <spschobert@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenschobert/keylime/issues"
},
"homepage": "https://github.com/stevenschobert/keylime",
"devDependencies": {
"assert": "^1.1.1",
"jshint": "^2.5.2",
"jshint-stylish": "^0.4.0",
"matcha": "^0.6.0",
"mocha": "^1.21.0",
"uglify-js": "^2.4.16"
},
"dependencies": {}
}