-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
104 lines (104 loc) · 2.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "facebook-nodejs-business-sdk",
"version": "21.0.5",
"description": "SDK for the Facebook Marketing API in Javascript and Node.js",
"author": "Facebook",
"maintainers": [
"Shuotian Cheng <[email protected]>"
],
"homepage": "https://github.com/facebook/facebook-nodejs-business-sdk",
"bugs": {
"url": "https://github.com/facebook/facebook-nodejs-business-sdk/issues"
},
"keywords": [
"facebook",
"meta",
"ads",
"sdk",
"api",
"javascript",
"es6",
"es2015",
"isomorphic",
"nodejs",
"amd",
"requirejs",
"umd",
"promises"
],
"repository": {
"type": "git",
"url": "git://github.com/facebook/facebook-nodejs-business-sdk.git"
},
"dependencies": {
"axios": "^1.4.0",
"currency-codes": "^1.5.1",
"iso-3166-1": "^2.1.1",
"js-sha256": "^0.9.0",
"mixwith": "~0.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-plugin-async-to-promises": "^1.0.5",
"babel-plugin-external-helpers": "~6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"chai": "~3.5.0",
"eslint": "^7.32.0",
"eslint-plugin-flowtype": "^2.50.3",
"flow-bin": "^0.138.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-filenames": "~4.0.0",
"gulp-load-plugins": "^1.6.0",
"gulp-open": "^3.0.1",
"gulp-rename": "^1.2.3",
"gulp-sourcemaps": "~2.1.1",
"jshint-sourcemap-reporter": "0.0.1",
"rollup-plugin-babel": "~2.6.1",
"rollup-plugin-commonjs": "~5.0.5",
"rollup-plugin-json": "~2.0.2",
"rollup-plugin-node-resolve": "~2.0.0",
"rollup-stream": "~1.14.0",
"semistandard": "^11.0.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~2.0.0"
},
"scripts": {
"prepublish": "gulp dist",
"start": "semistandard --fix",
"flow": "flow",
"test": "jest"
},
"main": "./dist/cjs.js",
"license": "Platform License",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"context",
"define",
"describe",
"expect",
"it",
"requirejs"
],
"ignore": [
"gulpfile.js",
"/dist/",
"/examples/"
],
"plugins": [
"flowtype"
],
"parser": "babel-eslint"
}
}