-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
48
{
"name": "cycle-web-extensions",
"version": "0.5.0",
"license": "Apache-2.0",
"description": "Cycle drivers to build WebExtensions",
"repository": "https://github.com/nspaeth/cycle-web-extensions",
"bugs": "https://github.com/nspaeth/cycle-web-extensions/issues",
"contributors": [
{"name": "Nathan Spaeth", "email": "[email protected]"},
{"name": "Brenton Simpson", "email": "[email protected]"}
],
"scripts": {
"clean": "rm -rf ./dist/*; mkdir -p ./dist/",
"lint": "tslint -c ./tslint.json --project tsconfig.json",
"build": "yarn run clean; tsc -d",
"format:tslint": "tslint --project . --fix",
"format:tsfmt": "tsfmt -r",
"format": "yarn run format:tsfmt && yarn run format:tslint"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"typescript:main": "src/index.ts",
"dependencies": {
"@cycle/run": "^3.2.0",
"tslib": "^1.4.0",
"xstream": "^11.0.0"
},
"peerDependencies": {},
"devDependencies": {
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"typescript-formatter": "^6.0.0",
"web-ext-types": "^0.3.2"
},
"keywords": [
"cycle",
"cyclejs",
"driver",
"chrome",
"extension",
"extensions",
"chrome extension",
"chrome extensions",
"web extension",
"web extensions"
]
}