-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
{
"name": "fqb",
"version": "2.1.1",
"description": "Facebook Graph API query builder for JavaScript",
"main": "lib/fqb.js",
"unpkg": "dist/fqb.js",
"module": "es/fqb.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:cov": "npm test -- --coverage",
"coverage": "codecov",
"lint": "eslint --ext ts src",
"release": "standard-version"
},
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chunkai1312/fqb.git"
},
"keywords": [
"fqb",
"facebook",
"fb",
"graph",
"api",
"query",
"builder"
],
"author": "Chun-Kai Wang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chunkai1312/fqb/issues"
},
"homepage": "https://github.com/chunkai1312/fqb#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"qs": "^6.9.1"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@types/qs": "^6.9.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"standard-version": "^8.0.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.2"
}
}