-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.04 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.04 KB
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
{
"name": "@uirouter/react-hybrid",
"version": "2.0.0",
"scripts": {
"clean": "shx rm -rf lib lib-esm _bundles",
"compile": "npm run clean && tsc && tsc --module es6 --outDir lib-esm",
"bundle": "rollup -c && rollup -c --environment MINIFY",
"fixmaps:lib": "tweak_sourcemap_paths -a --include 'lib/**/*.js.map' 'lib-esm/**/*.js.map'",
"fixmaps:bundle": "tweak_sourcemap_paths -a --include '_bundles/**/*.js.map'",
"build": "run-s compile bundle fixmaps:*",
"test": "npm run build",
"test:downstream": "test_downstream_projects",
"prepublishOnly": "npm run build",
"release": "release --deps @uirouter/core @uirouter/react @uirouter/angularjs",
"prepare": "husky"
},
"license": "MIT",
"dependencies": {
"@uirouter/angularjs": "1.1.2",
"@uirouter/core": "6.1.2",
"@uirouter/react": "1.0.8"
},
"peerDependencies": {
"angular": "^1.5.0",
"react": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/angular": "^1.8.2",
"@types/jquery": "^3.5.6",
"@types/node": "^20.0.0",
"@types/react": "^19.2.8",
"@types/react-dom": "^18.2.0",
"@uirouter/publish-scripts": "^2.7.0",
"angular": "^1.8.3",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rollup": "^4.55.1",
"rollup-plugin-sourcemaps2": "^0.5.4",
"typescript": "^5.3.0"
},
"main": "_bundles/ui-router-react-hybrid.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib-esm/index.js",
"require": "./_bundles/ui-router-react-hybrid.js"
},
"./legacy": {
"types": "./lib/legacy.d.ts",
"import": "./lib-esm/legacy.js",
"require": "./_bundles/ui-router-react-hybrid-legacy.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ui-router/react-hybrid.git"
}
}