-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·86 lines (86 loc) · 2.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "openfb",
"version": "0.0.8",
"description": "Facebook integration in JavaScript apps running in the browser and in Cordova.",
"homepage": "https://cjpatoilo.com/openfb",
"repository": "cjpatoilo/openfb",
"license": "MIT",
"author": "CJ Patoilo <[email protected]>",
"private": false,
"main": "openfb.js",
"files": [
"openfb.js",
"logoutcallback.html",
"oauthcallback.html"
],
"keywords": [
"🐥",
"auth",
"authenticate",
"authentication",
"cordova",
"facebook",
"fb",
"login",
"oauth",
"openfb",
"webview"
],
"ignore": [
".appveyor.yml",
".github",
".gitignore",
".travis.yml"
],
"dependencies": {},
"devDependencies": {
"ava": "^2.4.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.7.0",
"banner-cli": "^0.14.1",
"boeing": "latest",
"husky": "^3.0.9",
"inject-ga": "^0.2.4",
"lint-staged": "^9.4.2",
"live-server": "^1.2.1",
"marshmallow": "latest",
"npm-run-all": "^4.0.2",
"nyc": "^14.1.1",
"onchange": "^6.1.0",
"prettier-standard": "^15.0.1",
"rimraf": "^3.0.0",
"uglify-js": "^3.0.27"
},
"scripts": {
"build": "babel index.js --out-file openfb.js && uglifyjs openfb.js -o openfb.min.js -c -m && banner-cli openfb.js && banner-cli openfb.min.js",
"deploy": "marshmallow -o docs -i artwork.psd -f -m && inject-ga docs/index.html -o docs/index.html -c 'UA-24389952-13' && boeing docs && rimraf docs",
"lint": "prettier-standard --check",
"server": "live-server --entry-file=example.html --host=localhost --port=8100",
"start": "run-p build watch server",
"watch": "onchange index.js -- npm run build",
"test": "nyc ava"
},
"engines": {
"node": "^12.13.0"
},
"prettier": {
"jsxSingleQuote": false,
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"prettier-standard --format",
"git add"
]
},
"babel": {
"presets": [
"env"
]
}
}