-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.22 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
79
80
{
"name": "@uirouter/dsr",
"description": "UI-Router Deep State Redirect: redirect to the most recently activated child state",
"version": "1.2.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run compile && rollup -c && rollup -c --environment MINIFY",
"compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm",
"test": "jest",
"test:downstream": "test_downstream_projects",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
"watch:test": "jest --watch",
"debug": "node --inspect ./node_modules/.bin/jest --runInBand --watch",
"changelog": "update_changelog",
"release": "release",
"prepublishOnly": "npm run build"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
}
],
"maintainers": [
{
"name": "UIRouter Team",
"web": "https://github.com/ui-router?tab=members"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ui-router/dsr.git"
},
"bugs": {
"url": "https://github.com/ui-router/dsr/issues"
},
"engines": {
"node": ">=4.0.0"
},
"jsnext:main": "lib-esm/index.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"peerDependencies": {
"@uirouter/core": ">=5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/jquery": "^3.3.38",
"@types/lodash": "^4.14.152",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"@uirouter/core": "^6.0.5",
"@uirouter/publish-scripts": "^2.5.4",
"bufferutil": "^4.0.1",
"canvas": "^2.5.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lodash": "^4.17.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.10.9",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-uglify": "^6.0.1",
"ts-jest": "^26.4.0",
"typescript": "^3.9.3",
"utf-8-validate": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}