-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.39 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.39 KB
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": "sugar",
"version": "0.8.1",
"description": "Syntactic $ugar for customizing collab hardware",
"main": "library.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"babel-minify": "^0.5.1",
"chai": "^4.1.0",
"mocha": "^4.0.1"
},
"scripts": {
"start": "npm run build",
"build": "(rm library_min.js 2>/dev/null || true) && ( [ ! -d \"node_modules\" ] && echo 'node_modules missing, run $ npm install to install dependencies') || (npm run util:minify --silent && npm run util:stamp --silent && echo 'Build process complete, see library_min.js')",
"util:minify": "minify library.js > library_min.js",
"util:buildmessage": "echo '//$ugar v'$(npm run util:version --silent)' ('$(npm run util:year --silent)')'",
"util:stamp": "echo \"$(echo $(npm run util:buildmessage --silent) | cat - library_min.js)\" > library_min.js",
"util:version": "echo $npm_package_version",
"util:year": "echo $(date +%Y)",
"test": "mocha ./tests/index.js -qc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valgaze/sugar.git"
},
"keywords": [],
"author": "Victor Algaze",
"license": "ISC",
"bugs": {
"url": "https://github.com/valgaze/sugar/issues"
},
"homepage": "https://github.com/valgaze/sugar#readme"
}