-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
87 lines (87 loc) · 2.06 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
{
"name": "facebook-ads-sdk",
"version": "2.10.5",
"description": "SDK for the Facebook Ads API in Javascript and Node.js",
"author": "Lucas Costa (https://github.com/lucascosta)",
"maintainers": [
"lucascosta <[email protected]>"
],
"homepage": "https://github.com/lucascosta/facebook-js-ads-sdk",
"bugs": {
"url": "https://github.com/lucascosta/facebook-js-ads-sdk/issues"
},
"keywords": [
"facebook",
"ads",
"sdk",
"api",
"javascript",
"es6",
"es2015",
"isomorphic",
"nodejs",
"amd",
"requirejs",
"umd",
"promises"
],
"repository": {
"type": "git",
"url": "git://github.com/lucascosta/facebook-js-ads-sdk.git"
},
"devDependencies": {
"babel-core": "~6.17.0",
"babel-plugin-external-helpers": "~6.8.0",
"babel-preset-es2015": "~6.16.0",
"babelrc-rollup": "^3.0.0",
"chai": "~3.5.0",
"gulp": "~3.9.1",
"gulp-filenames": "~4.0.0",
"gulp-load-plugins": "~1.3.0",
"gulp-mocha": "~3.0.1",
"gulp-mocha-phantomjs": "~0.12.0",
"gulp-open": "~2.0.0",
"gulp-rename": "~1.2.2",
"gulp-sourcemaps": "~2.1.1",
"mocha": "~3.1.2",
"mocha-phantomjs": "~4.1.0",
"mocha-standard": "~1.0.0",
"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",
"standard": "~8.4.0",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0"
},
"dependencies": {
"mixwith": "~0.1.1",
"request": "^2.81.0",
"request-promise": "~4.1.1"
},
"scripts": {
"prepublish": "gulp dist",
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-core/register test/src/ test/standard.js"
},
"main": "./dist/cjs.js",
"license": "MIT",
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"context",
"define",
"describe",
"expect",
"it",
"mocha",
"requirejs"
]
},
"directories": {
"test": "test"
}
}