-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.12 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": "ushahidi-platform-sdk",
"version": "v0.6.2",
"description": "An SDK for the Ushahidi Platform - V3+ compatible",
"engines": {
"node": ">= 10 <13"
},
"main": "build/src/index.js",
"files": [
"build"
],
"devDependencies": {
"@types/jest": "~25.1.2",
"@types/node": "~12.12.27",
"@typescript-eslint/eslint-plugin": "~2.19.2",
"@typescript-eslint/parser": "~2.19.2",
"eslint": "~6.8.0",
"eslint-config-prettier": "~6.10.0",
"eslint-plugin-jest": "~23.7.0",
"jest": "~25.1.0",
"prettier": "~1.19.1",
"rimraf": "~3.0.2",
"ts-jest": "~25.2.0",
"tsutils": "~3.17.0",
"typescript": "~3.8.2"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write 'src/**/*.ts'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"author": "Ushahidi Team",
"license": "AGPL-3.0",
"dependencies": {
"axios": "^0.19.2",
"tslib": "~1.10.0"
}
}