-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.02 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.02 KB
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
{
"name": "fbaudience",
"version": "1.0.2",
"description": "CLI to create facebook business audience and add users",
"bin": {
"fbaudience": "bin/fbaudience"
},
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"ci": "yarn lint && yarn test"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"crypto": "^1.0.1",
"facebook-nodejs-business-sdk": "^4.0.4",
"gluegun": "^2.1.0"
},
"devDependencies": {
"jest": "^23.6.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"semi": false
},
"author": "Jairo Duarte (United Remote)"
}