forked from kamrulislam/xero-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.44 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
{
"name": "xero-node",
"version": "3.0.16",
"description": "NodeJS Client for the Xero API, supporting Public, Private and Partner Apps",
"main": "lib/index.js",
"scripts": {
"build": "npm run lint && tsc",
"build-watch": "tsc --watch",
"build-docs": "typedoc --options ./typedoc.js ./src",
"lint": "tslint ./src/**/*.ts",
"prepare": "npm run build",
"test-watch": "tsc --noEmit && jest --config ./jestconfig.js --watch",
"test": "tsc --noEmit && jest --config ./jestconfig.js",
"test-auth": "tsc --noEmit && jest ./src/__integration_tests__/partner-example.tests.ts --config ./jestconfig.js",
"test-ci": "tsc --noEmit && jest --runInBand --config ./jestconfig.js --ci --testResultsProcessor=jest-junit",
"scratch": "ts-node ./src/scratch.ts",
"create-key": "node ./.circleci/create_private_key.js"
},
"author": "Xero <[email protected]>",
"repository": "https://github.com/XeroAPI/xero-node.git",
"license": "MIT",
"typings": "lib/index.d.ts",
"dependencies": {
"oauth": "^0.9.15"
},
"devDependencies": {
"@types/es6-promise": "3.3.0",
"@types/jest": "22.1.1",
"@types/node": "9.4.0",
"@types/puppeteer": "1.1.0",
"jest": "22.4.3",
"jest-junit": "3.6.0",
"nodemon": "^1.18.7",
"opn": "5.2.0",
"prompt": "1.0.0",
"puppeteer": "1.1.1",
"ts-jest": "23.10.5",
"ts-node": "4.1.0",
"tslint": "5.9.1",
"typedoc": "0.11.1",
"typescript": "2.7.1"
}
}