-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.5 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
{
"name": "time-ranges",
"version": "0.1.0",
"description": "Standalone implementation of the HTML5 Media TimeRanges interface.",
"main": "index.js",
"jsnext:main": "src/index.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <[email protected]>"
],
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"files": [
"src/",
"lib/",
"index.js"
],
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"prepublish": "in-publish && npm run build || not-in-publish",
"test": "gulp test"
},
"repository": "zentrick/time-ranges",
"bugs": "https://github.com/zentrick/time-ranges/issues",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^6.1.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-standard": "^7.0.1",
"in-publish": "^2.0.0",
"isparta": "^4.0.0",
"mocha-junit-reporter": "^1.12.1",
"run-sequence": "^1.2.1",
"yargs": "^5.0.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"expect"
]
},
"greenkeeper": {
"ignore": [
"gulp-standard"
]
}
}