-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.39 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
{
"name": "@yorkjs/url",
"version": "0.0.1",
"description": "parse and stringify url",
"main": "dist/url.js",
"module": "dist/url.esm.js",
"jsnext:main": "dist/url.esm.js",
"types": "types/index.d.ts",
"keywords": [
"url"
],
"scripts": {
"test": "jest",
"source": "cross-env NODE_ENV=development NODE_FORMAT=es node_modules/.bin/rollup -c ./rollup.config.js && cross-env NODE_ENV=development node_modules/.bin/rollup -c ./rollup.config.js",
"min": "cross-env NODE_ENV=production NODE_MINIFY=true NODE_FORMAT=es node_modules/.bin/rollup -c ./rollup.config.js && cross-env NODE_ENV=production NODE_MINIFY=true node_modules/.bin/rollup -c ./rollup.config.js",
"build": "npm run source && npm run min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yorkjs/url.git"
},
"author": "musicode",
"license": "MIT",
"bugs": {
"url": "https://github.com/yorkjs/url/issues"
},
"homepage": "https://github.com/yorkjs/url#readme",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^26.0.22",
"@types/node": "^14.11.8",
"cross-env": "^7.0.3",
"rollup": "^2.45.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.4",
"jest": "^26.6.3",
"ts-jest": "^26.5.4"
}
}