-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.14 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
48
{
"name": "iajs",
"version": "0.2.0",
"description": "Internet Archive JavaScript Client",
"main": "dist/ia.cjs.js",
"module": "dist/ia.esm.js",
"browser": "dist/ia.browser.js",
"scripts": {
"test": "node ./examples/web/test.js",
"dev": "cd examples/web; npm run dev",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rchrd2/iajs.git"
},
"keywords": [
"Internet",
"Archive",
"Client"
],
"author": "Richard Caceres",
"license": "MIT",
"bugs": {
"url": "https://github.com/rchrd2/iajs/issues"
},
"homepage": "https://github.com/rchrd2/iajs#readme",
"dependencies": {
"fetch-jsonp": "^1.1.3",
"node-fetch": "^2.6.1",
"xmldom": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-plugin-async-to-promises": "^1.0.5",
"prettier": "2.1.2",
"rollup": "^1.29.0"
},
"files": [
"dist"
]
}