-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 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
{
"name": "proxy-observe",
"version": "0.0.21",
"private": false,
"isomorphic": true,
"description": "A Proxy Based Implementation Of Object.observe plus Object.deepObserve",
"main": "index.js",
"client": "browser/proxy-observe.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha --report lcov -- -R spec",
"browserify": "browserify index.js -o browser/proxy-observe.js",
"minify": "minify browser/proxy-observe.js > browser/proxy-observe.min.js",
"prepublish": "npm run browserify && npm run minify"
},
"repository": {
"type": "git",
"url": "https://github.com/anywhichway/proxy-observe.git"
},
"keywords": [
"Object.observe"
],
"author": "Simon Y. Blackwell <syblackwell@anywhichway.com> (http://www.github.com/anywhichway)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anywhichway/proxy-observe/issues"
},
"dependencies": {},
"homepage": "https://github.com/anywhichway/proxy-observe",
"devDependencies": {
"blanket": "^1.2.1",
"browserify": "^13.1.1",
"chai": "^3.4.1",
"codeclimate-test-reporter": "^0.3.0",
"istanbul": "^0.4.1",
"minify": "^2.0.13",
"mocha": "^2.3.4"
}
}