-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "single-spa-angularjs",
"version": "4.3.1",
"description": "the logic needed to register angular 1 apps with single-spa",
"main": "lib/single-spa-angularjs.js",
"scripts": {
"format": "prettier . --write",
"build": "rimraf lib && babel src --out-dir lib --source-maps",
"lint": "eslint src",
"prepublishOnly": "pnpm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && pnpm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-angularjs.git"
},
"keywords": [
"single",
"spa",
"angularjs",
"ui-router"
],
"author": "Joel Denning",
"license": "MIT",
"bugs": {
"url": "https://github.com/single-spa/single-spa-angularjs/issues"
},
"homepage": "https://github.com/single-spa/single-spa-angularjs#readme",
"peerDependencies": {
"angular": "*"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/plugin-transform-modules-umd": "^7.14.0",
"@babel/preset-env": "^7.14.2",
"eslint": "^7.27.0",
"eslint-config-important-stuff": "^1.1.0",
"husky": "^4.2.5",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2"
}
}