-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
50
51
52
53
54
55
{
"name": "url-listener",
"version": "2.0.0",
"description": "Listen for url changes without using a timer",
"main": "dist/url-listener.esm.js",
"module": "dist/url-listener.esm.js",
"umd": "dist/url-listener.umd.js",
"files": [
"dist/url-listener.esm.js",
"dist/url-listener.umd.js"
],
"keywords": [
"frontend",
"history",
"pushstate",
"popstate",
"url",
"events",
"tram-one"
],
"scripts": {
"lint": "xo listener.js webpack.config.js tests/specs/*.js",
"build-esm": "rollup -c ./rollup.config.esm.js",
"build-umd": "rollup -c ./rollup.config.umd.js",
"build": "npm run build-esm && npm run build-umd",
"pretest": "npm run build",
"test": "jasmine tests/specs/listener-spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tram-One/url-listener.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tram-One/url-listener/issues"
},
"homepage": "https://github.com/Tram-One/url-listener#readme",
"devDependencies": {
"budo": "^10.0.4",
"eslint-config-tram-one": "^2.0.0",
"jasmine": "^2.6.0",
"nightmare": "^2.10.0",
"rollup": "^0.58.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-uglify": "^3.0.0",
"xo": "^0.18.2"
},
"xo": {
"extends": [
"tram-one"
]
}
}