-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cycle-hn",
"author": "Usman Riaz",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/usm4n/cycle-hn.git"
},
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/history": "^4.6.0",
"@types/webpack-env": "^1.13.0",
"@webpack-blocks/dev-server2": "^0.4.0",
"@webpack-blocks/extract-text2": "^0.4.0",
"@webpack-blocks/postcss": "^0.4.3",
"@webpack-blocks/sass": "^0.4.1",
"@webpack-blocks/tslint": "^0.4.0",
"@webpack-blocks/typescript": "^0.4.1",
"@webpack-blocks/webpack2": "^0.4.0",
"autoprefixer": "^7.1.1",
"babel-core": "^6.25.0",
"babel-plugin-istanbul": "^4.1.4",
"chalk": "^2.0.1",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"cycle-restart": "^0.2.2",
"cyclejs-test-helpers": "^1.3.0",
"html-looks-like": "^1.0.3",
"html-webpack-plugin": "^2.29.0",
"ifdef-loader": "^1.1.1",
"jsverify": "^0.8.2",
"mocha": "^3.4.2",
"mocha-webpack": "^0.7.0",
"node-sass": "^4.5.3",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"snabbdom-pragma": "^2.4.0",
"snabbdom-to-html": "^3.2.0",
"typescript": "2.4.x",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0",
"webpack-node-externals": "^1.6.0",
"sw-precache-webpack-plugin": "^0.11.4"
},
"dependencies": {
"@cycle/dom": "^18.0.0",
"@cycle/history": "^6.4.0",
"@cycle/http": "^14.0.0",
"@cycle/isolate": "^3.0.0",
"@cycle/run": "^3.1.0",
"@cycle/time": "^0.8.0",
"cycle-onionify": "4.0.0",
"cyclejs-utils": "^1.0.4",
"switch-path": "^1.2.0",
"xstream": "^10.9.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config configs/webpack.config.js",
"test": "cross-env NODE_ENV=test nyc mocha-webpack --timeout=100000 --colors --webpack-config configs/webpack.config.test.js test/**/*.test.*",
"build": "cross-env NODE_ENV=production webpack --config configs/webpack.config.js",
"clean": "rimraf build .tmp .nyc_output coverage"
},
"nyc": {
"include": [
"src"
],
"reporter": [
"html",
"text-summary"
]
}
}