-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "spark-ordernet-client",
"version": "0.1.7",
"description": "Simple REST client for Spark-Ordernet API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"start:dev": "nodemon",
"start": "npm run build && node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest",
"unit-test": "jest unit",
"test:dev": "jest --watchAll",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run unit-test && npm run lint"
}
},
"keywords": [
"spark",
"ordernet",
"spark-ordernet",
"spark client",
"ordernet-client"
],
"author": "Itamar Cohen",
"repository": {
"type": "git",
"url": "git+https://github.com/itamarco/spark-ordernet-client.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.2.3",
"jest": "^26.5.3",
"nodemon": "^1.19.1",
"onchange": "^6.1.0",
"rimraf": "^3.0.0",
"run-script-os": "^1.1.1",
"ts-jest": "^26.4.1",
"ts-node": "^8.3.0",
"typescript": "^4.0.3"
},
"dependencies": {
"axios": "^0.21.0"
}
}