UNPKG

1.18 kBJSONView Raw
1{
2 "name": "abstract-nested-router",
3 "version": "0.1.2",
4 "description": "Minimal nested-routing impl!",
5 "main": "dist/index.js",
6 "module": "dist/index.esm.js",
7 "browser": "dist/index.umd.js",
8 "scripts": {
9 "dev": "npm run test -- -w",
10 "mocha": "_mocha --exit --recursive -bR spec",
11 "build": "bili src/index.js --minimal --format es --format cjs --format umd --module-name AbstractNestedRouter",
12 "test": "npm run test:unit --",
13 "test:ci": "npm run coverage && npm run report --",
14 "test:unit": "npm run mocha -- -r esm 'test/*.test.js'",
15 "coverage": "nyc --silent -x '**/tests/**' -x '**/*.test.js' -- npm run test:unit",
16 "upload": "codecov --file=coverage/lcov.info --disable=gcov -e TRAVIS_NODE_VERSION",
17 "report": "nyc report",
18 "prepublish": "npm run build"
19 },
20 "files": [
21 "dist/*.js"
22 ],
23 "keywords": [
24 "nested",
25 "router",
26 "abstract",
27 "hash-based",
28 "nested-router"
29 ],
30 "author": "Alvaro Cabrera <yo@soypache.co>",
31 "license": "MIT",
32 "devDependencies": {
33 "bili": "^4.8.0",
34 "chai": "^4.2.0",
35 "codecov": "^3.5.0",
36 "esm": "^3.2.25",
37 "mocha": "^6.1.4",
38 "nyc": "^14.1.1"
39 }
40}