-
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) · 800 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 800 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": "blender-js",
"description": "A dynamic almost-static Blog Aware page non-generator",
"version": "0.1.4",
"private": false,
"author": {
"name": "Andres C. Rodriguez",
"email": "andres@randomcurve.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acrodrig/blender"
},
"keywords": [
"blog",
"generator",
"html",
"web"
],
"dependencies": {},
"devDependencies": {},
"scripts": {
"build": "uglifyjs lib/blender.js -o dist/blender-$npm_package_version.min.js -c -m && cp lib/blender.js dist/blender-$npm_package_version.js",
"postversion": "git push && git push --tags",
"version": "npm run build && git add ."
},
"bugs": {
"url": "https://github.com/acrodrig/blender/issues"
}
}