-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 947 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 947 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
32
33
34
35
36
37
38
39
{
"name": "@packaged-ui/pagelets",
"version": "2.6.1",
"main": "js/index.js",
"types": "js/index.d.ts",
"author": {
"name": "Tom Kay",
"email": "oridan82@gmail.com",
"url": "https://github.com/TomK"
},
"license": "MIT",
"files": [
"js/"
],
"type": "module",
"dependencies": {
"@packaged-ui/ready-promise": "^2.0.0",
"@packaged-ui/request": "^1.0.2",
"@ungap/event-target": "^0.2.3",
"html5-history-api": "^4.2.10"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"core-js": "3",
"esm": "^3.2.25",
"jsdom": "^17.0.0",
"mocha": "^9.1.1",
"parse-multipart-data": "^1.2.0",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "mocha ./js/test --watch --parallel"
}
}