-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
40
41
{
"name": "introspected",
"version": "0.2.6",
"description": "Introspection for serializable arrays and JSON like objects.",
"main": "./introspected.js",
"unpkg": "min.js",
"repository": {
"type": "git",
"url": "git+/~https://github.com/WebReflection/introspected.git"
},
"keywords": [
"observe",
"JSON",
"object",
"array",
"change",
"subscribe",
"notify"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/WebReflection/introspected/issues"
},
"homepage": "/~https://github.com/WebReflection/introspected#readme",
"scripts": {
"build": "npm run minify && npm test && npm run size",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"minify": "uglifyjs introspected.js --comments=/^!/ --compress --mangle -o min.js",
"size": "cat introspected.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c",
"test": "istanbul cover test/introspected.js",
"web": "$(sleep 2 && open http://0.0.0.0:7151/) & tiny-cdn run ./"
},
"devDependencies": {
"coveralls": "^2.13.0",
"istanbul": "^0.4.5",
"tiny-cdn": "^0.7.0",
"tressa": "^0.3.1",
"uglify-es": "^3.0.4"
}
}