-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.41 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.41 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
{
"name": "Reconstructive",
"description": "Reconstructive is a ServiceWorker Module for Client-side Reconstruction of Composite Mementos",
"version": "0.7.1",
"repository": "https://github.com/oduwsdl/Reconstructive",
"homepage": "https://oduwsdl.github.io/Reconstructive/",
"author": "Sawood Alam <ibnesayeed@gmail.com>",
"contributors": [
"John Berlin <n0tan3rd@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"esdoc": "^1.1.0",
"esdoc-external-ecmascript-plugin": "^1.0.0",
"esdoc-external-webapi-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"jest": "^23.6.0",
"serve": "^10.0.1"
},
"scripts": {
"docs": "mkdir -p Reconstructive && cp reconstructive.js reconstructive-banner.js Reconstructive && esdoc && rm -rf Reconstructive && cp -r resources docs/",
"test": "jest",
"dist": "babel --no-comments reconstructive.js reconstructive-banner.js -d dist && babel --no-comments --minified reconstructive.js -o dist/reconstructive.min.js && babel --no-comments --minified reconstructive-banner.js -o dist/reconstructive-banner.min.js",
"diff": "babel reconstructive.js -o /tmp/reconstructive.js && babel reconstructive-banner.js -o /tmp/reconstructive-banner.js && diff reconstructive.js /tmp/reconstructive.js ; diff reconstructive-banner.js /tmp/reconstructive-banner.js ; rm /tmp/reconstructive*.js",
"dev": "serve ."
}
}