-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 959 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": "ia",
"version": "0.0.0",
"description": "Internet Archive client",
"main": "lib/index.js",
"scripts": {
"build": "browserify -s InternetArchive -e ./ | uglifyjs -c warnings=false -m > ia.min.js",
"build-debug": "browserify -s InternetArchive -e ./ > ia.debug.js",
"install-precommit": "echo ./node_modules/.bin/standard > .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"standard": "standard --fix",
"test": "standard && tape tests/*.js | tap-spec"
},
"keywords": [
"Internet Archive"
],
"author": "richard@archive.org",
"license": "AGPL-3.0",
"devDependencies": {
"browserify": "13.1.0",
"standard": "7.1.2",
"tap-spec": "4.1.1",
"tape": "4.6.0",
"uglify-js": "2.7.0"
},
"dependencies": {
"browser-request": "0.3.3",
"request": "2.74.0"
},
"standard": {
"ignore": [
"ia.debug.js"
]
},
"browser": {
"request": "browser-request"
}
}