-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.2 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
{
"name": "@draftable/compare-api",
"version": "1.4.4",
"description": "Client library for the Draftable document comparison API",
"license": "MIT",
"homepage": "https://draftable.com",
"repository": "github:draftable/compare-api-node-client",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/draftable/compare-api-node-client/issues"
},
"author": "Draftable <[email protected]>",
"contributors": [
"Andrew Bird <[email protected]>",
"Andrew Ellerton <[email protected]>",
"Ben Toner <[email protected]>",
"James Payor <[email protected]>",
"Samuel D. Leslie <[email protected]>"
],
"keywords": [
"draftable",
"api",
"compare",
"comparison",
"comparisons",
"pdf",
"word",
"document",
"documents",
"doc",
"docx",
"powerpoint",
"presentation",
"presentations",
"ppt",
"pptx",
"txt"
],
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"needle": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.16.0",
"@types/needle": "^2.5.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.4",
"mocha-steps": "^1.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"scripts": {
"build": "babel --extensions .ts src/ -d dist/",
"prepare": "npm run build",
"test": "mocha",
"postbuild": "npx -p typescript tsc --declaration --allowJs --emitDeclarationOnly --outDir dist/types",
"lint": "eslint src/**/*.ts"
}
}