forked from bevacqua/ruta3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "@nichoth/routes",
"description": "Route matcher devised for shared rendering JavaScript applications",
"version": "3.0.7",
"scripts": {
"build": "mkdir -p dist && rm -f dist/* && npm run build-js && npm run build-mjs",
"build-js": "esbuild src/index.mjs --bundle --format=cjs --keep-names --outfile=./dist/index.cjs",
"build-mjs": "esbuild src/index.mjs --bundle --format=esm --keep-names --outfile=./dist/index.mjs",
"lint": "standardx -v",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"postversion": "git push && git push --tags && npm publish",
"test": "npm run build && node test/test.cjs && node test/next.cjs"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"esbuild": "^0.16.10",
"standardx": "^7.0.0"
},
"homepage": "https://github.com/nichoth/routes",
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/routes.git"
},
"author": "nichoth <[email protected]> (http://nichoth.com)",
"bugs": {
"url": "https://github.com/nichoth/routes/issues"
},
"main": "index.js",
"directories": {
"test": "test"
},
"keywords": [
"routes",
"browser"
],
"standardx": {
"ignore": [
"dist/*"
]
},
"license": "ISC"
}