-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "akahu",
"version": "1.15.3",
"description": "Javascript SDK for Akahu",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "npm run build:clean && npm run build:package && npm run build:types",
"build:clean": "rm -rf dist",
"build:package": "rollup -c",
"build:types": "tsc --project tsconfig.build.json",
"docs": "rm -r docs/* && npx typedoc",
"prettier": "prettier --write src/",
"test": "jest",
"preversion": "npm run test",
"version": "node scripts/version.js && npm run build && npm run docs && git add -A docs src/version.ts"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"parser": "typescript",
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akahu-io/akahu-sdk-js.git"
},
"keywords": [
"node",
"js",
"javascript",
"sdk",
"akahu"
],
"author": "Akahu",
"license": "ISC",
"bugs": {
"url": "https://github.com/akahu-io/akahu-sdk-js/issues"
},
"homepage": "https://github.com/akahu-io/akahu-sdk-js#readme",
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
".ts": "ts-jest"
},
"collectCoverage": true,
"coverageDirectory": "coverage"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.3",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.12",
"@types/uuid": "^8.3.1",
"axios-mock-adapter": "^1.19.0",
"jest": "^27.0.6",
"prettier": "^2.8.8",
"rollup": "^2.55.0",
"ts-jest": "^27.0.4",
"typedoc": "^0.21.5",
"typedoc-plugin-markdown": "^3.10.4",
"typedoc-plugin-merge-modules": "^3.0.0",
"typedoc-plugin-no-inherit": "^1.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"tslib": "^2.3.0",
"uuid": "^8.3.2"
}
}