-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 941 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
{
"name": "jsone-ui",
"version": "0.0.4",
"keywords": [
"json",
"schema",
"editor",
"documentation",
"api",
"json-schema"
],
"description": "JSON Editor with configurable editing, validation and documentation using json schema",
"homepage": "https://github.com/pleaseshutup/jsone",
"license": "MIT",
"main": "jsone.js",
"author": {
"name": "Dan Williams",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/pleaseshutup/jsone"
},
"bugs": {
"url": "https://github.com/pleaseshutup/jsone/issues",
"email": "[email protected]"
},
"devDependencies": {
"uglifyjs": "latest"
},
"scripts": {
"dev": "python -m SimpleHTTPServer 8080",
"build": "uglifyjs jsone.js -c -m -o dist/jsone.min.js; gzip < dist/jsone.min.js > dist/jsone.min.js.gz; stat --printf=\"%s\" dist/jsone.min.js.gz; echo \" bytes\""
}
}