-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 KB
/
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": "@the-grid/ed-userhtml",
"version": "0.3.0",
"description": "Ed widget for user html",
"main": "index.js",
"scripts": {
"test": "echo 'todo'",
"build": "mkdir -p dist && npm run buildindex && npm run buildedit",
"buildedit": "browserify ./src/edit.js | uglifyjs -cm > ./dist/edit.js",
"buildindex": "browserify ./src/index.js | uglifyjs -cm > ./dist/index.js",
"devedit": "budo src/edit.js:dist/edit.js --live",
"devindex": "budo src/index.js:dist/index.js --live",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-grid/ed-userhtml.git"
},
"keywords": [
"ed",
"widget"
],
"author": "The Grid",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-grid/ed-userhtml/issues"
},
"homepage": "https://github.com/the-grid/ed-userhtml#readme",
"dependencies": {
"pako": "^1.0.3",
"urlsafe-base64": "^1.0.0"
},
"devDependencies": {
"browserify": "^13.1.0",
"budo": "8.3.0",
"uglify": "^0.1.5"
}
}