-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "hickory",
"private": true,
"description": "Hickory monorepo",
"scripts": {
"build": "lerna run build",
"postinstall": "lerna run prepare",
"publishUpdated": "lerna publish from-package",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "lerna run test",
"test:integration": "karma start",
"versions": "lerna version",
"version": "node ./scripts/postversions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshrmn/hickory.git"
},
"keywords": [
"history",
"navigation",
"single page application"
],
"author": "Paul Sherman",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshrmn/hickory/issues"
},
"homepage": "https://github.com/pshrmn/hickory#readme",
"devDependencies": {
"@types/jasmine": "^3.3.9",
"@types/jest": "^24.0.6",
"@types/jsdom": "^12.2.2",
"@types/node": "^11.9.4",
"@types/qs": "^6.5.1",
"husky": "^1.3.1",
"jasmine": "^3.2.0",
"jest": "^24.1.0",
"jsdom": "^13.2.0",
"karma": "^4.1.0",
"karma-browserstack-launcher": "^1.4.0",
"karma-jasmine": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.0",
"lerna": "^3.13.3",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"qs": "^6.6.0",
"rimraf": "^2.6.3",
"rollup": "^1.2.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-uglify": "^6.0.2",
"simple-git": "^1.110.0",
"ts-jest": "^24.0.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@hickory/browser": "file:packages/browser",
"@hickory/dom-utils": "file:packages/dom-utils",
"@hickory/hash": "file:packages/hash",
"@hickory/in-memory": "file:packages/in-memory",
"@hickory/location-utils": "file:packages/location-utils",
"@hickory/root": "file:packages/root"
}
}