forked from artberri/sidr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "sidr",
"description": "jQuery plugin for creating side menus and the easiest way for doing your menu responsive",
"version": "3.0.0",
"homepage": "http://www.berriart.com/sidr/",
"author": {
"name": "Alberto Varela",
"email": "alberto@berriart.com",
"url": "http://www.berriart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/artberri/sidr"
},
"bugs": "https://github.com/artberri/sidr/issues",
"license": "MIT",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"clean": "rm -rf dist/* && mkdir -p ./dist",
"copy:deps": "mkdir -p ./dist/vendor && cp ./node_modules/jquery/dist/jquery.js ./dist/vendor",
"copy:cssmin": "cp dist/stylesheets/sidr.bare.css dist/stylesheets/sidr.bare.min.css && cp dist/stylesheets/sidr.dark.css dist/stylesheets/sidr.dark.min.css && cp dist/stylesheets/sidr.light.css dist/stylesheets/sidr.light.min.css",
"test": "karma start",
"lint": "eslint 'src/**/*.js' 'spec/**/*.js'",
"qa": "npm run lint && npm run test",
"css:minify": "cross-env NODE_ENV=minify postcss -c -r dist/stylesheets/*.min.css",
"css:compile": "postcss -c -d dist/stylesheets src/css/*.css",
"build:js": "rollup -c",
"build:css": "npm run css:compile && npm run copy:cssmin && npm run css:minify",
"build": "npm run build:css && npm run build:js",
"watch:css": "postcss -c -d dist/stylesheets src/css/*.css -w",
"watch:js": "rollup -c -w",
"watch": "npm run watch:css | npm run watch:js",
"serve": "http-server ./ -p 9000 -o http://127.0.0.1:9000/examples/index.html",
"dev": "npm run clean && npm run build && npm run copy:deps && (npm run serve | npm run watch)",
"dist": "npm run clean && npm run qa && npm run build"
},
"dependencies": {
"jquery": ">1.12.4"
},
"devDependencies": {
"autoprefixer": "^7.2.1",
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"cssnano": "^3.10.0",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.10.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jquery": "^0.2.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^5.0.2",
"karma-sinon-chai": "^1.3.3",
"mocha": "^4.0.1",
"postcss": "^6.0.14",
"postcss-cli": "^4.1.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"puppeteer": "^0.13.0",
"rollup": "^0.52.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-istanbul": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"stylelint": "^8.3.1",
"stylelint-config-standard": "^18.0.0"
},
"keywords": [
"menu",
"responsive",
"navigation",
"jquery-plugin",
"ecosystem:jquery",
"jquery",
"plugin",
"rwd"
],
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}