-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "collection",
"version": "0.0.0",
"description": "Observable collection",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"preversion": "npm run lint && npm run deps && npm test",
"postversion": "git push && git push --tags",
"lint": "eslint .",
"deps": "dependency-check package.json && dependency-check package.json --unused --entry test/*.js -i dependency-check -i eslint -i eslint-config-invintus -i tap-spec",
"test": "tape test/*.js | tap-spec"
},
"dependencies": {
"nanobus": "^2.1.0",
"observ": "^0.2.0",
"observ-struct": "^6.0.0",
"pull-notify": "^0.1.1",
"pull-stream": "^3.5.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"eslint": "^3.17.1",
"eslint-config-invintus": "^8.0.0",
"tape": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TVWIT/collection.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TVWIT/collection/issues"
},
"homepage": "https://github.com/TVWIT/collection#readme",
"private": true
}