-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 987 Bytes
/
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
{
"name": "lowloader",
"version": "0.0.5",
"description": "A module loader built for microfrontends. Give it a URL, it will return a Promise that will resolve when the module is available.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn test; yarn build",
"...": "..."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicholas-johnson/lowloader.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicholas-johnson/lowloader/issues"
},
"homepage": "https://github.com/nicholas-johnson/lowloader",
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"rollup": "^1.17.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"dependencies": {
"husky": "^3.0.1"
}
}