-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "cycle-cart",
"version": "0.0.1",
"description": "Example app using cycle js",
"main": "index.js",
"scripts": {
"dirs": "mkdirp ./public/images ./public/styles ./public/scripts",
"test": "babel-node test/index | faucet",
"images": "ncp ./app/images/ ./public/images",
"css": "stylus ./app/main.styl --out ./public/styles/app.styles.css",
"html": "jade ./app/index.jade -o ./public",
"start": "http-server -p 3000 ./public",
"prebuild": "npm run dirs && npm run html && npm run images && npm run css",
"build": "browserify -d ./app/index.js -t babelify > ./public/scripts/app.bundle.js"
},
"keywords": [
"ES6",
"Functional Reactive Programming",
"CycleJS"
],
"author": "Marco Romero",
"license": "MIT",
"devDependencies": {
"babel": "~5.8.21",
"babel-tape-runner": "~1.2.0",
"babelify": "~6.2.0",
"browserify": "~11.0.1",
"eslint": "^1.5.1",
"faucet": "0.0.1",
"glob": "^5.0.15",
"http-server": "~0.8.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"stylus": "^0.52.0",
"tape": "~4.2.0"
},
"dependencies": {
"@cycle/core": "~3.1.0",
"@cycle/dom": "~5.0.1",
"bootstrap-styl": "^4.0.5"
}
}