forked from adrai/enum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.52 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
{
"author": "adrai",
"name": "enum",
"version": "2.5.0",
"private": false,
"main": "index.js",
"engines": {
"node": ">=0.6.0"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"is-buffer": "^1.1.0"
},
"devDependencies": {
"expect.js": ">= 0.1.2",
"gulp": "^3.8.11",
"gulp-babel": "^4.0.0",
"gulp-bench": "^1.1.0",
"gulp-browserify": "^0.5.1",
"gulp-mocha": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.1",
"gulp-shell": "^0.4.0",
"gulp-uglify": "^1.1.0",
"mocha": ">= 1.0.1",
"zuul": ">= 1.0.1"
},
"description": "Enum is a javascript module that introduces the Enum Type. It works for node.js and in the browser.",
"keywords": [
"enum"
],
"homepage": "https://github.com/adrai/enum",
"repository": {
"type": "git",
"url": "[email protected]:adrai/enum.git"
},
"bugs": {
"url": "https://github.com/adrai/enum/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/adrai/enum/master/licence"
}
],
"scripts": {
"test": "gulp test-ci",
"build": "gulp build",
"prepublish": "gulp"
},
"testling": {
"browsers": [
"ie/6..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
],
"harness": "mocha",
"files": "test/*.js"
}
}