-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "wrist",
"version": "0.0.3",
"description": "Easy way to bind or react to properties change.",
"main": "wrist.js",
"devDependencies": {
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"jsdom": "^9.10.0",
"tressa": "^0.2.0",
"uglify-js": "^2.7.5"
},
"scripts": {
"build": "npm test && npm run minify && npm run size;",
"test": "istanbul cover test/test.js",
"minify": "uglifyjs wrist.js --comments=/^!/ --compress --mangle -o wrist.min.js",
"size": "cat wrist.js | wc -c;cat wrist.min.js | wc -c;gzip -c wrist.min.js | wc -c",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/wrist.git"
},
"keywords": [
"observer",
"mutation",
"watch",
"unwatch",
"react",
"properties",
"changes"
],
"author": "Andrea Giammarchi",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebReflection/wrist/issues"
},
"homepage": "https://github.com/WebReflection/wrist#readme"
}