This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
forked from ui-router/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.91 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
{
"name": "@uirouter/core",
"description": "UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps",
"version": "5.0.5",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && npm run fixdts && npm run bundle",
"bundle": "rollup -c && rollup -c --environment MINIFY",
"fixdts": "dts-downlevel 'lib/**/*.d.ts' 'lib-esm/**/*.d.ts'",
"install": "node ./migrate/migratewarn.js",
"prepare": "npm run build",
"test": "karma start",
"watch": "run-p watch:*",
"watch:buildjs": "tsc -w",
"watch:buildesm": "tsc -w -m es6 --outDir lib-esm",
"watch:dts-downlevel": "npm run fixdts",
"watch:test": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1",
"debug": "karma start --singleRun=false --autoWatch=true --autoWatchInterval=1 --browsers=ChromeCanary",
"changelog": "node scripts/update_changelog.js",
"release": "node scripts/release.js"
},
"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/ui-router/core.git"
},
"bugs": {
"url": "https://github.com/ui-router/core/issues"
},
"engines": {
"node": ">=4.0.0"
},
"jsnext:main": "lib-esm/index.js",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.47",
"@types/jquery": "^1.10.31",
"awesome-typescript-loader": "3.0.0-beta.10",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.1.1",
"conventional-changelog-ui-router-core": "^1.4.1",
"core-js": "^2.4.1",
"dts-downlevel": "^0.3.0",
"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.4",
"karma-script-launcher": "~0.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"npm-run-all": "^3.1.1",
"readline-sync": "^1.4.4",
"rollup": "^0.41.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-progress": "^0.2.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^1.0.2",
"rollup-plugin-visualizer": "^0.2.1",
"shelljs": "^0.7.0",
"shx": "^0.1.4",
"tslint": "^4.5.1",
"typescript": "~2.4.0",
"webpack": "^1.13.3"
}
}