-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "tiny-uri",
"version": "9.1.5",
"description": "Lightweight Javascript library for handling URLs",
"keywords": [
"Lightweight",
"Javascript",
"library",
"es2015",
"URLs"
],
"repository": "https://github.com/robhicks/tiny-uri.git",
"browser": "dist/TinyUri.js",
"main": "index.js",
"module": "dist/tiny-uri.js",
"scripts": {
"build": "npx rollup -c",
"cypress:open": "npx cypress open",
"cypress:run": "cypress run",
"docs": "npx esdoc -c .esdoc.json",
"start": "rollup -cw",
"test": "npx cypress run"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"cypress": "^9.5.3",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}