forked from garybernhardt/static-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "static-path",
"version": "0.0.1",
"description": "Static-path uses TypeScript to prevent 404s and other path generation mistakes at compile time",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "ava",
"build": "npm-run-all format compile test lint",
"compile": "tsc",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint --max-warnings 0 --ext '.js,.jsx,.ts,.tsx' src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garybernhardt/static-path.git"
},
"keywords": [
"path",
"url",
"link",
"404",
"pattern",
"routing",
"router"
],
"author": "Gary Bernhardt",
"license": "ISC",
"bugs": {
"url": "https://github.com/garybernhardt/static-path/issues"
},
"homepage": "https://github.com/garybernhardt/static-path#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}