forked from cognitom/felt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "felt",
"version": "0.3.2",
"description": "Ondemand bundler for ES6 / CSS Next",
"main": "index.js",
"bin": "./bin/index.js",
"files": [
"bin",
"lib",
"index.js"
],
"homepage": "https://github.com/cognitom/felt",
"repository": {
"type": "git",
"url": "git+https://github.com/cognitom/felt.git"
},
"keywords": [
"express",
"middleware"
],
"author": "Tsutomu Kawamura",
"license": "MIT",
"bugs": {
"url": "https://github.com/cognitom/felt/issues"
},
"dependencies": {
"chokidar": "^1.6.1",
"co": "^4.6.0",
"cp-file": "^4.1.0",
"cpy": "^4.0.1",
"del": "^2.2.2",
"express": "^4.14.0",
"fs-promise": "^0.5.0",
"glob": "^7.1.1",
"loglevel": "^1.4.1",
"meow": "^3.7.0",
"minimatch": "^3.0.3",
"request": "^2.75.0",
"tiny-promisify": "^1.0.0"
},
"devDependencies": {
"ava": "^0.16.0",
"browser-sync": "^2.17.5",
"eslint": "^3.8.1",
"felt-recipe-minimal": "^0.2.0",
"gh-pages": "^0.11.0",
"normalize-css": "^2.3.1"
},
"scripts": {
"test": "npm run eslint && npm run ava",
"eslint": "eslint index.js lib/*.js bin/*.js",
"ava": "ava test/spec.js",
"start": "npm run server & npm run sync",
"server": "node bin/index.js --src doc --debug --watch --port 3000",
"sync": "browser-sync start --files 'doc/*.html, doc/*.svg, doc/*.png, cache/**' --proxy 'localhost:3000' --port 3030",
"deploy": "npm run export && gh-pages -d dist",
"export": "node bin/index.js --src doc --export dist"
}
}