forked from draftable/compare-api-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "@draftable/compare-api",
"version": "1.0.2",
"description": "Client library for Draftable's document comparison API.",
"author": "Draftable <hello@draftable.com>",
"contributors": [
"James Payor <james@draftable.com>"
],
"keywords": [
"draftable",
"compare",
"comparison",
"document",
"documents",
"pdf",
"word",
"powerpoint",
"api"
],
"license": "ISC",
"repository" : "draftable/compare-api-node-client",
"bugs": {
"url": "https://github.com/draftable/compare-api-node-client/issues",
"email": "support@draftable.com"
},
"main": "dist/index.js",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-flow": "^1.0.0",
"flow-bin": "^0.39.0"
},
"dependencies": {
"needle": "^1.4.5"
},
"scripts": {
"build": "babel src --presets es2015,flow --plugins transform-class-properties,transform-object-rest-spread --out-dir dist",
"prepublish": "npm run build",
"test": "node test.js"
}
}