-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.54 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
{
"author": {
"name": "Vadim Zhulanov",
"url": "https://github.com/maiordom"
},
"config": {
"name": "islider",
"jsPath": "src",
"cssPath": "src",
"dist": "dist"
},
"devDependencies": {
"babel-preset-es2015": "^6.0.15",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.0.0",
"gulp-concat": "^2.6.0",
"gulp-connect": "^2.2.0",
"gulp-cssnano": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-stylus": "^2.1.0",
"gulp-uglify": "^1.4.2",
"gulp-watch": "^4.3.5",
"lodash": "^4.6.1",
"mocha": "^2.4.5",
"nib": "^1.1.0",
"precommit-hook": "^3.0.0",
"run-sequence": "^1.1.4",
"selenium-standalone": "^4.7.2",
"shelljs": "^0.5.3",
"webdriverio": "^3.3.0"
},
"engines": {
"node": ">4.0.0"
},
"homepage": "https://github.com/maiordom/islider",
"license": "MIT",
"name": "islider",
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/maiordom/islider.git"
},
"scripts": {
"build": "node_modules/.bin/gulp build",
"lint": "node pre-commit.js",
"postinstall": "rm -f .jshintignore .jshintrc && npm run selenium_install",
"selenium_install": "node_modules/.bin/selenium-standalone install",
"selenium_start": "node_modules/.bin/selenium-standalone start",
"test": "node_modules/.bin/mocha --timeout 60000 --slow 30000 test/webdriver.js",
"validate": "npm ls"
},
"version": "0.1.0"
}