-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
78 lines (78 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "aurelia-history-browser",
"version": "1.4.0",
"description": "An implementation of the Aurelia history interface based on standard browser hash change and push state mechanisms.",
"keywords": [
"aurelia",
"history",
"router"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/history-browser/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-history-browser.js",
"module": "dist/native-modules/aurelia-history-browser.js",
"typings": "dist/aurelia-history-browser.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/history-browser"
},
"files": [
"dist",
"doc",
"typings.json"
],
"scripts": {
"changelog": "node build/changelog.js",
"test": "karma start --single-run",
"test:watch": "karma start",
"test:debugger": "karma start --browsers ChromeDebugging",
"prebuild": "rimraf dist",
"build": "rollup -c",
"postbuild": "npm run build:dts",
"build:dts": "dts-bundle-generator -o dist/aurelia-history-browser.d.ts src/aurelia-history-browser.ts --external-types",
"cut-release": "npm run lint && npm run test && npm run build && npm run changelog",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"jspm": {
"registry": "npm",
"main": "aurelia-history-browser",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"dependencies": {
"aurelia-history": "^1.0.0",
"aurelia-pal": "^1.0.0"
}
},
"dependencies": {
"aurelia-history": "^1.0.0",
"aurelia-pal": "^1.0.0"
},
"devDependencies": {
"@types/jasmine": "^3.3.12",
"aurelia-pal-browser": "^1.8.1",
"conventional-changelog": "^3.1.3",
"dts-bundle-generator": "^2.1.0",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"rimraf": "^2.6.3",
"rollup": "^1.10.0",
"rollup-plugin-typescript2": "^0.20.1",
"ts-loader": "^5.3.3",
"tslint": "^5.16.0",
"typescript": "^3.3.4000",
"webpack": "^4.30.0",
"yargs": "^4.8.1"
}
}