-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 977 Bytes
/
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
{
"name": "@fugality/var-stream",
"version": "1.2.0",
"description": "Stream that pushes a value when it is changed with set.",
"main": "./dist/VarStream.js",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"test": "mocha --require babel-polyfill --compilers js:babel-register -R dot --watch --bail --recursive",
"test-verbose": "mocha --require babel-polyfill --compilers js:babel-register --watch --recursive"
},
"author": "Tim Smith",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"mocha": "^3.3.0",
"most-test": "^1.3.0",
"typescript": "^2.3.2"
},
"dependencies": {
"@most/multicast": "^1.2.5",
"most": "^1.3.0"
}
}