-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 932 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
28
29
30
31
32
33
34
{
"name": "@hyperjump/uri-template",
"version": "0.2.0",
"description": "An RFC-6570 URI Template implementation",
"main": "lib/uri-template.js",
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "mocha 'lib/**/*.spec.js'",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": "github:hyperjump-io/uri-template",
"keywords": [
"URI Template",
"RFC-6570"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.1",
"rollup": "^2.23.1",
"rollup-plugin-terser": "^7.0.0"
}
}