-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
42
43
{
"name": "flyd-cacheuntil",
"version": "1.0.0",
"description": "Cache a stream's output until triggered by another stream.",
"main": "dist/cache.js",
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --ignore \"__tests__\"",
"lint": "eslint src/",
"mocha": "find ./src -wholename \"./*__tests__/*\" | xargs mocha -R spec --require test-setup",
"test": "npm run lint && npm run mocha",
"prepublish": "npm test && npm run build && npm shrinkwrap",
"postpublish": "rm npm-shrinkwrap.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ThomWright/flyd-cacheUntil"
},
"keywords": [
"flyd",
"cache",
"caching"
],
"author": "Thom Wright <[email protected]> (http://thomwright.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomWright/flyd-cacheUntil/issues"
},
"homepage": "https://github.com/ThomWright/flyd-cacheUntil",
"dependencies": {
"flyd-sampleon": "^1.0.3",
"flyd-scanmerge": "0.0.3"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^4.1.1",
"chai": "^3",
"eslint": "^2.2.0",
"eslint-config-circuitsim": "^0.2",
"flyd": "^0.1.12",
"mocha": "^2.2.5",
"rimraf": "^2.3.4"
}
}