-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "cycle-gear",
"version": "7.5.0",
"description": "Main function factory for CycleJS",
"main": "dist/index.js",
"jsnext": {
"main": "dist-es2015/index.js"
},
"jspm": {
"directories": {
"lib": "dist-es2015"
},
"main": "index.js",
"format": "esm"
},
"directories": {
"doc": "docs",
"lib": "dist"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc -p tsconfig.es2015.json && tsc -p tsconfig.json",
"version": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WorldMaker/cycle-gear.git"
},
"author": "Max Battcher <me@worldmaker.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WorldMaker/cycle-gear/issues"
},
"homepage": "https://github.com/WorldMaker/cycle-gear#readme",
"devDependencies": {
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"tslint-language-service": "^0.9.6",
"typescript": "^2.6.1"
},
"dependencies": {
"@cycle/run": "^4.1.0",
"xstream": "^11.1.0"
}
}