-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.19 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
40
41
42
{
"name": "watch-proxy",
"version": "0.0.2",
"description": "Wrap the proxy-observer with custom observers",
"main": "./index.js",
"private": false,
"isomorphic": true,
"client": "./browser/WatchProxy.js",
"scripts": {
"test": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --colors test/*.spec.js",
"webpack": "webpack -p webpack.config.js",
"prepublish": "npm run webpack"
},
"author": "Vitor Silva <vitorsilvaemail@gmail.com> (https://github.com/vitormsilva)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vitormsilva/watch-proxy.git"
},
"keywords": [
"Object.observe",
"proxy-observe",
"watch-proxy"
],
"bugs": {
"url": "https://github.com/vitormsilva/watch-proxy/issues"
},
"dependencies": {},
"homepage": "https://github.com/vitormsilva/watch-proxy",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-istanbul": "^0.12.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"proxy-observe": "0.0.21",
"webpack": "^2.2.1"
}
}