-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 871 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
{
"name": "up.js",
"version": "3.0.0",
"description": "A lightweight solution for asynchronous load of resources(css, js, images, etc.) on demand",
"main": "index.js",
"scripts": {
"build": "google-closure-compiler --js=up.js --js_output_file=up.min.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/apyrkh/up.js.git"
},
"keywords": [
"asynchronous",
"resource",
"loading",
"performance",
"optimization"
],
"author": "Aliaksandr Pyrkh <alexpyrkh@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apyrkh/up.js/issues"
},
"homepage": "https://github.com/apyrkh/up.js#readme",
"dependencies": {},
"devDependencies": {
"google-closure-compiler": "20200315.0.0",
"husky": "4.2.3"
}
}