-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.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
{
"name": "built-with-cycle",
"version": "0.0.1",
"description": "A website to showcase the cool projects built with Cycle.js",
"main": "index.js",
"scripts": {
"start": "babel-node server.js",
"test": "mocha --compilers js:babel-register",
"bundle": "browserify index.js -t babelify -t uglifyify -o bundle.js && postcss --use autoprefixer -o bundle.css styles.css"
},
"repository": {
"type": "git",
"url": "https://github.com/Widdershin/built-with-cycle.git"
},
"keywords": [
"hot",
"reloading",
"cycle.js",
"happiness"
],
"author": "Nick Johnstone",
"license": "MIT",
"bugs": {
"url": "https://github.com/Widdershin/built-with-cycle/issues"
},
"homepage": "http://widdersh.in/built-with-cycle",
"dependencies": {
"@cycle/core": "^6.0.0-rc2",
"@cycle/dom": "^8.0.0-rc3",
"@cycle/http": "^7.0.0",
"babel-preset-es2015": "^6.1.18",
"rx": "^4.0.7"
},
"devDependencies": {
"autoprefixer": "^6.2.3",
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "^0.3.1",
"budo": "^6.1.0",
"bufferutil": "^1.2.1",
"postcss-cli": "^2.3.3",
"uglifyify": "^3.0.1",
"utf-8-validate": "^1.2.1"
}
}