forked from bpevs/favioli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "favioli",
"version": "0.3.0",
"author": "Ben Pevsner",
"license": "Unlicense",
"description": "Emoji Favicons for the web",
"repository": "https://github.com/ivebencrazy/favioli",
"main": "build/index.js",
"scripts": {
"start": "npm run watch",
"build": "npm-run-all -p build:*",
"build:markup": "pug ./source --out ./build",
"build:scripts": "rollup -c ./rollup.config.js",
"build:styles": "stylus ./source -o ./build",
"prebuild": "mkdir -p ./build",
"watch": "npm-run-all -p watch:*",
"watch:markup": "npm run build:markup -- -w",
"watch:scripts": "npm run build:scripts -- --watch",
"watch:styles": "npm run build:styles -- --watch",
"prewatch": "mkdir -p ./build"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@types/chrome": "0.0.63",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"npm-run-all": "^4.1.2",
"pug": "^2.0.3",
"pug-cli": "^1.0.0-alpha6",
"rollup": "^0.56.5",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"stylus": "^0.54.5"
},
"babel": {
"presets": [
"env"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"dependencies": {
"fun-tabs": "^1.0.3",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2"
}
}