-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "@ficusjs/router",
"version": "3.4.2",
"description": "Lightweight standalone client-side router that supports history and hash routing",
"type": "module",
"main": "dist/router.mjs",
"module": "dist/router.mjs",
"types": "types/router.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -i src/router.mjs -o dist/router.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:dev": "rollup -i src/router.mjs -o tmp/router.mjs -f es",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p serve open",
"lint": "standard \"./src/**/*.mjs\"",
"open": "open-cli http://localhost:8080/test/e2e",
"test": "start-server-and-test serve:silent http://localhost:8080 cy:run",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-router.git"
},
"keywords": [
"ficusjs",
"frontend",
"web-components",
"router"
],
"author": "Matt Levy",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"cypress": "13.15.0",
"http-server": "14.1.1",
"npm-run-all": "4.1.5",
"open-cli": "8.0.0",
"rollup": "4.24.0",
"rollup-plugin-filesize": "10.0.0",
"standard": "17.1.2",
"start-server-and-test": "2.0.8"
},
"exports": {
".": {
"import": "./dist/router.mjs"
}
}
}