-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.3 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": "router-primitives",
"version": "1.0.0-beta.6",
"description": "A cross-platform application router. Declarative routing by way of layout primitives",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf coverage build tmp dist",
"build": "npm run clean && rollup -c",
"build:watch": "npm run clean && rollup -cw",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier:fix": "prettier \"src/**/*\" --write",
"prettier:check": "prettier \"src/**/*\" --check",
"test": "jest",
"test:watch": "jest --watch",
"type-check:watch": "npm run type-check -- --watch",
"type-check": "tsc --noEmit",
"all-ci": "npm run test && npm run lint && npm run prettier:check && npm run type-check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erhathaway/router-primitives.git"
},
"keywords": [
"router",
"routing",
"router primitives",
"router state",
"router management",
"application routing",
"primitives",
"declarative routing",
"layout primitives"
],
"author": "Ethan Hathaway",
"license": "MIT",
"bugs": {
"url": "https://github.com/erhathaway/router-primitives/issues"
},
"homepage": "https://github.com/erhathaway/router-primitives#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^24.0.6",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-jest": "^23.2.0",
"jest": "^23.1.0",
"prettier": "^1.18.2",
"query-string": "^6.8.3",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-external-globals": "^0.5.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-watch": "^4.3.1",
"ts-jest": "^23.10.5",
"typescript": "^3.9.0-beta"
},
"dependencies": {},
"peerDependencies": {}
}