-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.59 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
49
50
51
52
53
{
"name": "archive-search",
"version": "1.1.15",
"description": "Small, zero dependency, Promise based library to search through archive.org's api for the browser and node.",
"main": "index.js",
"scripts": {
"test": "mocha ./tests/testSearch.js || exit 0",
"test:node": "mocha ./tests/testSearch.node.js || exit 0",
"test:watch": "mocha --watch ./tests/testSearch.js",
"start": "webpack --mode=development",
"build": "webpack --mode=production --config webpack.config.browser.js",
"browser": "webpack --mode=development --config webpack.config.browser.js",
"browser:watch": "webpack --mode=development --watch --config webpack.config.browser.js",
"node": "node src/index.js"
},
"browser": {
"./dist/search.node.js": "./dist/search.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobg1/archive-search.git"
},
"keywords": [
"archive.org",
"node",
"react",
"Promises",
"zero dependency",
"browser"
],
"author": "Jacob Greenwald",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacobg1/archive-search/issues"
},
"homepage": "https://github.com/jacobg1/archive-search#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"babel-loader": "^9.1.3",
"chai": "^4.4.1",
"eslint": "^9.5.0",
"jsdom": "24.1.0",
"jsdom-global": "3.0.2",
"mocha": "^10.5.1",
"nodemon": "^3.1.4",
"sinon": "^18.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}