-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 792 Bytes
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
{
"name": "includ-js",
"description": "Fast, drop and forget include HTML for the web",
"version": "0.2.1",
"private": false,
"author": {
"name": "Andres C. Rodriguez",
"email": "andres@randomcurve.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acrodrig/include"
},
"keywords": [
"html",
"include",
"import",
"web"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"build": "uglifyjs lib/include.js -o dist/include-$npm_package_version.min.js -c -m && cp lib/include.js dist/include-$npm_package_version.js",
"postversion": "git push && git push --tags",
"version": "npm run build && git add ."
},
"bugs": {
"url": "https://github.com/acrodrig/include/issues"
}
}