This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.76 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
{
"name": "fb-kit",
"version": "0.1.0",
"description": "Facebook Graph API JS Kit",
"main": "dist/fb-kit.min.js",
"module": "src/Kit.js",
"author": "Syed I.R. (https://github.com/irazasyed)",
"homepage": "https://github.com/irazasyed/fb-kit",
"license": "MIT",
"keywords": [
"facebook",
"facebook graph api",
"fb-kit",
"facebook js",
"facebook kit"
],
"bugs": {
"url": "https://github.com/irazasyed/fb-kit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/irazasyed/fb-kit"
},
"scripts": {
"build": "export NODE_ENV=production && webpack --progress --hide-modules",
"dev": "webpack --watch --progress --hide-modules",
"webpack": "webpack --progress --hide-modules",
"lint": "eslint src/**/*.js",
"prepublish": "yarn run build",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "rm -rf node_modules/webpack/node_modules/uglify-js"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
]
}
},
"dependencies": {
"babel-runtime": "^6.20.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.12.2",
"eslint-loader": "^1.6.1",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "^2.2.0-rc.3"
}
}