-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "detect-flash",
"version": "0.3.1",
"description": "A library to detect if Adobe Flash plugin is really alive in a web browser",
"main": "lib/detect-flash.js",
"files": [
"lib"
],
"scripts": {
"init": "yarn global add phantomjs",
"build": "babel detect-flash.js --out-dir lib --source-maps inline && yarn build-swf",
"build-swf": "mxmlc --output=lib/FlashDetector.swf FlashDetector.as",
"demo": "yarn build && cp -r lib demo && browserify demo/demo.js -o demo/lib/demo.js && simple-http-connect -p 8000 -d demo",
"test": "browserify detect-flash-test.js -t [ babelify --plugins [ es6-promise ] ] | tape-run -b phantom | faucet",
"lint": "eslint detect-flash.js detect-flash-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ygoto3/detect-flash.git"
},
"keywords": [
"flash",
"swf",
"javascript"
],
"author": "Yusuke Goto",
"license": "MIT",
"bugs": {
"url": "https://github.com/ygoto3/flash-detector/issues"
},
"homepage": "https://github.com/ygoto3/flash-detector#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-es6-promise": "^1.0.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.8.0",
"faucet": "0.0.1",
"flex-sdk": "^4.6.0-0",
"simple-http-connect": "0.0.3",
"tape": "^4.6.3",
"tape-run": "^2.1.4"
},
"dependencies": {
"swfobject": "^2.2.1"
}
}