-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "oppm",
"version": "0.0.7",
"description": "Ooyala Player Package Manager",
"preferGlobal": true,
"bin": {
"oppm": "bin/oppm.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"preversion": "npm test",
"test": "istanbul cover _mocha $(find test -name '*_test.js') && npm run linter",
"linter": "./node_modules/.bin/eslint index.js lib/** config/** || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/ooyala/oppm.git"
},
"author": "Ooyala",
"contributors": [
"Juan Pablo Franco <[email protected]>"
],
"license": "ISC",
"dependencies": {
"archiver": "^1.3.0",
"chalk": "^1.1.3",
"cli-spinner": "^0.2.5",
"download": "^5.0.2",
"es6-promisify": "^5.0.0",
"escape-string-regexp": "^1.0.5",
"fs-extra": "^2.0.0",
"inquirer": "^3.0.1",
"lodash.flatten": "^4.4.0",
"lodash.union": "^4.6.0",
"lodash.uniq": "^4.5.0",
"md5-file": "^3.1.1",
"minimist": "^1.2.0",
"pug": "^2.0.0-beta6",
"request": "^2.75.0",
"semver": "^5.3.0",
"semver-regex": "^1.0.0",
"untildify": "^3.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mock-fs": "3.10.0",
"nock": "^9.0.2"
}
}