-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 887 Bytes
/
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
{
"name": "ficusjs-router",
"version": "1.0.0",
"description": "Lightweight standalone client-side router that supports history and hash routing",
"main": "dist/router.js",
"module": "dist/router.js",
"types": "types/router.d.ts",
"scripts": {
"build": "rollup -i src/router.js -o dist/router.js -f es -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "start-server-and-test serve:silent http://localhost:8080 cy:run",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"author": "Matt Levy",
"license": "ISC",
"devDependencies": {
"cypress": "5.3.0",
"http-server": "0.12.3",
"npm-run-all": "4.1.5",
"rollup": "2.28.2",
"rollup-plugin-terser": "7.0.2",
"standard": "14.3.4",
"start-server-and-test": "1.11.4"
}
}