forked from angular-ui/ui-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.29 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "angular-ui-router",
"description": "State-based routing for AngularJS 1.x",
"version": "1.0.0-beta.4",
"scripts": {
"clean": "shx rm -rf lib lib-esm _doc release",
"build": "tsc && tsc -p tsconfig.esm.json",
"package": "npm run clean && npm run build && webpack",
"watch": "node_modules/watch/cli.js 'npm run test' src test",
"test": "npm run test:integrate",
"test:ng12": "karma start --ngversion 1.2.28",
"test:ng13": "karma start --ngversion 1.3.16",
"test:ng14": "karma start --ngversion 1.4.9",
"test:ng15": "karma start --ngversion 1.5.0",
"test:integrate": "tsc && npm run test:ng12 && npm run test:ng13 && npm run test:ng14 && npm run test:ng15",
"debug": "karma start --singleRun=false --browsers=Chrome --autoWatch=true --autoWatchInterval=1",
"docs": "typedoc --tsconfig tsconfig.typedoc.json --readme README.md --name 'angular-ui-router' --theme node_modules/ui-router-typedoc-themes/bin/default --out _doc --external-aliases internalapi,external --navigation-label-globals angular-ui-router",
"prepublish": "npm run package"
},
"homepage": "https://ui-router.github.io",
"contributors": [
{
"name": "Nate Abele",
"email": "[email protected]",
"web": "https://radify.io"
},
{
"name": "Chris Thielen",
"web": "https://github.com/christopherthielen"
},
{
"name": "Tim Kindberg",
"web": "https://github.com/timkindberg"
},
{
"name": "Karsten Sperling",
"web": "https://github.com/ksperling"
}
],
"maintainers": [
{
"name": "UIRouter Team",
"web": "https://github.com/ui-router?tab=members"
}
],
"repository": {
"type": "git",
"url": "https://github.com/angular-ui/ui-router.git"
},
"bugs": {
"url": "https://github.com/angular-ui/ui-router/issues"
},
"engines": {
"node": ">4"
},
"license": "MIT",
"main": "lib/ng1.js",
"jsnext:main": "lib-esm/ng1.js",
"typings": "lib/ng1.d.ts",
"dependencies": {
"ui-router-core": "=1.0.0"
},
"peerDependencies": {
"angular": ">=1.2 <2.0"
},
"devDependencies": {
"@types/angular": "^1.5.14",
"@types/angular-animate": "^1.5.5",
"@types/angular-mocks": "^1.5.5",
"@types/jasmine": "^2.2.34",
"@types/jquery": "^1.10.31",
"awesome-typescript-loader": "^2.2.4",
"babel-core": "^5.8.14",
"clone": "^1.0.2",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.1.1",
"glob": "^7.0.5",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "~0.1.0",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-script-launcher": "~0.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-systemjs": "^0.7.2",
"karma-webpack": "^1.8.0",
"lodash": "^4.5.1",
"remap-istanbul": "^0.6.3",
"shelljs": "^0.7.0",
"shx": "^0.1.4",
"systemjs": "^0.18.4",
"tslint": "=2.5.0",
"typedoc": "~0.5.0",
"typedoc-plugin-external-module-name": "^1.0.2",
"typedoc-plugin-internal-external": "^1.0.0",
"typedoc-plugin-ui-router": "^1.0.0",
"typescript": "~2.0.2",
"ui-router-typedoc-themes": "^1.0.0",
"watch": "^0.18.0",
"webpack": "1.x",
"webpack-dev-server": "1.x",
"yargs": "^4.2.0"
}
}