-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
44
45
46
47
{
"name": "@agoric/make-flow-comm",
"version": "0.0.1",
"description": "Create a Vow/Flow suite: flexible Promise Pipelining",
"main": "dist/make-flowcomm.cjs.js",
"module": "dist/make-flowcomm.esm.js",
"browser": "dist/make-flowcomm.umd.js",
"scripts": {
"test": "node -r esm test/test.js",
"build": "rollup -c",
"lint-fix": "eslint --fix '**/*.{js,jsx}'",
"lint-check": "eslint '**/*.{js,jsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Agoric/make-flowcomm.git"
},
"author": "Agoric",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Agoric/make-flowcomm/issues"
},
"homepage": "https://github.com/Agoric/make-flowcomm#readme",
"dependencies": {
"@agoric/harden": "^0.0.2",
"esm": "^3.2.5"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "1.16.4",
"rollup": "^1.3.2",
"tape": "^4.9.2",
"tape-promise": "^4.0.0"
},
"directories": {
"test": "test"
},
"files": [
"dist"
]
}