-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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": "url-change-event",
"version": "0.1.7",
"description": "a wrapper event that listen & control URL changes",
"main": "dist/url-change-event.js",
"typings": "./index.d.ts",
"sideEffects": true,
"scripts": {
"lint": "prettier -l 'src/**/*.js' && eslint src",
"build": "rollup -c",
"karma": "karma start",
"test": "npm run lint && npm run karma",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerrykingxyz/url-change-event.git"
},
"author": "jinrui",
"license": "MIT",
"bugs": {
"url": "https://github.com/jerrykingxyz/url-change-event/issues"
},
"homepage": "https://github.com/jerrykingxyz/url-change-event#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"chai": "^4.3.7",
"eslint": "^8.28.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.8",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"rollup": "^3.3.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-terser": "^0.1.0"
}
}