-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.91 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
{
"name": "menuchef",
"version": "1.3.0",
"description": "Create hamburgers’ menu like a chef",
"main": "dist/MenuChef.js",
"dependencies": {
"hamburgers": "^0.9.3",
"no-scroll": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"collect.js": "^3.0.46",
"concurrently": "^3.5.0",
"css-loader": "^0.28.11",
"documentation": "^4.0.0-rc.1",
"extract-loader": "^1.0.1",
"gulp": "^3.9.1",
"gulp-twig": "^0.7.0",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"import-fresh": "^2.0.0",
"lodash-es": "^4.17.10",
"mocha-phantomjs": "^4.1.0",
"mocha-phantomjs-core": "^2.1.1",
"node-sass": "^4.9.0",
"sass-loader": "^6.0.7",
"slugg": "^1.2.1",
"standard": "^10.0.3",
"standard-loader": "^6.0.1",
"style-loader": "^0.19.0",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"scripts": {
"start": "npm run dev",
"dev": "concurrently -k --names \"WEBPACK,GULP\" -c \"bgYellow.bold,bgRed.bold\" \"npm run webpack:watch\" \"npm run site:dev\"",
"webpack:build": "webpack --colors",
"webpack:watch": "webpack -w --colors",
"webpack:dev": "webpack-dev-server",
"build": "npm run webpack:build && npm run site:build",
"test": "npm run build && mocha-phantomjs .\\test\\index.html",
"precommit": "npm test",
"doc:generate": "gulp doc",
"site:build": "gulp",
"site:dev": "gulp dev"
},
"author": "Matheus Falcão (https://github.com/theus)",
"license": "MIT",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/theus/MenuChef"
},
"keywords": [
"menuchef",
"menu",
"hamburger",
"nav"
],
"contributors": [
"Italo Ferreira (https://github.com/italoferreira)"
],
"optionalDependencies": {
"hoek": "^4.2.1"
}
}