-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
52 lines (52 loc) · 1.67 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
{
"name": "@uirouter/react-hybrid",
"version": "1.0.5",
"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 install"
},
"license": "MIT",
"dependencies": {
"@uirouter/angularjs": "1.0.29",
"@uirouter/core": "6.0.7",
"@uirouter/react": "1.0.7"
},
"peerDependencies": {
"angular": "^1.5.0",
"react": ">=15.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/angular": "^1.8.2",
"@types/jquery": "^3.5.6",
"@types/react": "^16.9.43",
"@uirouter/publish-scripts": "^2.5.5",
"angular": "^1.8.2",
"husky": "^6.0.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rollup": "^2.55.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^3.9.7"
},
"main": "_bundles/ui-router-react-hybrid.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ui-router/react-hybrid.git"
}
}