-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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": "marra",
"version": "2.0.2",
"description": "Monorepo for the Marra JavaScript SDK",
"source": "src/*",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"engines": {
"node": ">=12"
},
"files": [
"dist"
],
"exports": "./dist/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"prepublishOnly": "npm run build",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"types": "npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"lint": "eslint .",
"jsdoc": "jsdoc -c jsdoc.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LarvenLLC/marra-sdk-js.git"
},
"author": "Larven <dev@larven.co.tz> (https://larven.co.tz/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LarvenLLC/marra-sdk-js/issues"
},
"homepage": "https://github.com/LarvenLLC/marra-sdk-js#readme",
"dependencies": {
"axios": "^1.3.4",
"dotenv": "^16.4.5"
},
"devDependencies": {
"eslint": "^8.36.0",
"jsdoc": "^4.0.2",
"microbundle-crl": "^0.13.11",
"typescript": "^5.4.5"
}
}