forked from gajus/youtube-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
]
},
"dependencies": {
"debug": "^2.6.6",
"load-script": "^1.0.0",
"sister": "^3.0.0"
},
"description": "YouTube IFrame Player API abstraction.",
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "1.4.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-canonical": "^8.2.0",
"flow-bin": "^0.45.0",
"flow-copy-source": "^1.1.0",
"husky": "^0.13.3",
"npm-watch": "^0.1.9",
"semantic-release": "^6.3.2"
},
"keywords": [
"youtube",
"iframe",
"player",
"api",
"promise",
"async",
"video"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "youtube-player",
"repository": {
"type": "git",
"url": "https://github.com/gajus/youtube-player"
},
"watch": {
"test": "{src,test}/*.js"
},
"scripts": {
"build": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files && flow-copy-source src dist",
"lint": "eslint ./src ./test",
"watch": "npm-watch",
"precommit": "npm run lint && npm run test",
"test": "NODE_ENV=development ava --verbose"
},
"version": "4.0.1"
}