-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 961 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
33
34
35
36
37
{
"name": "@most/adapter",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"author": "Brian Cavalier <brian@briancavalier.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && cpy src/*.js.flow dist/",
"prepare": "yarn build",
"test:unit": "cross-env TS_NODE_PROJECT=test/tsconfig.json mocha",
"test": "yarn test:unit && flow check"
},
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@most/core": "^1.5.0",
"@most/scheduler": "^1.2.3",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.2",
"cpy-cli": "^2.0.0",
"cross-env": "^5.2.0",
"flow-bin": "^0.89.0",
"mocha": "^6.2.2",
"rollup": "^1.32.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-typescript2": "^0.18.1",
"sinon": "^7.5.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@most/types": "^1.0.2"
}
}