-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "asureforce",
"version": "0.0.6",
"description": "Asure Force API for nodejs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist/",
"clean:build": "npm run clean && npm run build",
"update:version": "npm version patch && git push --all origin && git push --tags origin",
"deploy": "npm run update:version && npm run clean:build && npm publish"
},
"keywords": [
"asureforce",
"asure",
"force",
"API",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/buster95/asureforce-node"
},
"bugs": {
"url": "https://github.com/buster95/asureforce-node/issues"
},
"homepage": "https://github.com/buster95/asureforce-node",
"author": {
"name": "Walter Corrales",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^15.12.2",
"dotenv": "^10.0.0",
"jest": "^27.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
}
}