-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 773 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 773 Bytes
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
{
"name": "downshow",
"version": "0.1.0",
"author": "Alex Cornejo",
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.13.0",
"uglify-js": "~2.4.0",
"jshint": "~2.3.0"
},
"dependencies": {
"jsdom": "~0.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/acornejo/downshow.git",
"web": "https://github.com/acornejo/downshow"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/acornejo/downshow/raw/master/LICENSE"
}
],
"scripts": {
"prepublish": "./node_modules/.bin/uglifyjs -o downshow.min.js src/downshow.js",
"pretest": "./node_modules/.bin/jshint -e 'js,json' ./src ./test",
"test": "./node_modules/.bin/mocha -b -R spec ./test"
},
"main": "index.js"
}