-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@internetarchive/wayback-radial-tree",
"version": "1.0.9",
"description": "Radial Tree Library for Wayback Machine",
"main": "build/radial-tree.cjs.js",
"module": "build/radial-tree.esm.js",
"browser": "build/radial-tree.umd.js",
"browserslist": "> 0.25%, not dead",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "rollup -c rollup.config.mjs",
"example": "rollup -c rollup.example.mjs",
"lint": "eslint --ignore-pattern .gitignore src",
"mocha": "mochapack --webpack-config ./config/webpack.config.test.js --recursive ./tests",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internetarchive/wayback-radial-tree.git"
},
"author": "Internet Archive",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/internetarchive/wayback-radial-tree/issues"
},
"homepage": "https://github.com/internetarchive/wayback-radial-tree#readme",
"keywords": [
"Wayback Machine",
"Radial Tree Library"
],
"dependencies": {
"d3": "^7.9.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/eslint-parser": "^7.25",
"@babel/plugin-external-helpers": "^7.25",
"@babel/preset-env": "^7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.2.1",
"chai": "^5.1.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.4",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.5.0",
"mocha": "^10.7.3",
"mochapack": "^2.1.4",
"postcss": "^8.4.40",
"rollup": "^3.29.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-serve": "^1.1.1",
"sass": "^1.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.95.0"
},
"publishConfig": {
"access": "public"
}
}