-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
49
{
"name": "xstream-marbles",
"version": "1.0.0",
"description": "Interactive marble diagrams for xstream Streams",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --content-base ./docs --hot --inline --colors --port 3030 --open --history-api-fallback",
"build": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/artfuldev/xstream-marbles.git"
},
"keywords": [
"xstream",
"marbles",
"marble diagrams"
],
"author": "Sudarsan Balaji",
"license": "MIT",
"bugs": {
"url": "https://github.com/artfuldev/xstream-marbles/issues"
},
"homepage": "https://artfuldev.github.io/xstream-marbles",
"dependencies": {
"@cycle/dom": "^21.1.0",
"@cycle/history": "^6.10.0",
"@cycle/isolate": "^3.4.0",
"@cycle/run": "^4.4.0",
"ramda": "^0.25.0",
"typestyle": "^2.0.1",
"xstream": "^11.7.0"
},
"devDependencies": {
"cross-env": "^5.2.0",
"debug": "^4.1.0",
"html-webpack-plugin": "^3.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.2.1",
"typescript": "^3.1.1",
"typings": "^1.3.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"yargs": "^12.0.2"
}
}