-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
{
"name": "@consento/api",
"version": "0.5.0",
"description": "JavasScript API for building things with consento.",
"main": "index.js",
"private": true,
"scripts": {
"ci": "npm run lint && npm run test -- --no-watchman",
"test": "jest --env=node",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"pack": "pack-ts",
"release": "npm run ci && npm run build-ts && npm run pack && cd dist && npm publish --access=public",
"lint": "eslint --ext .js,.ts ."
},
"keywords": [],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-redeclare": "off"
}
},
"eslintIgnore": [
"node_modules/*",
"dist/*",
"coverage/*",
"**/*.d.ts",
"/src/types/"
],
"dependencies": {
"@consento/crypto": "^0.4.3"
},
"devDependencies": {
"@leichtgewicht/pack-ts": "^1.0.1",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.14",
"@types/libsodium-wrappers-sumo": "^0.7.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"abort-controller": "^3.0.0",
"eslint": "^7.11.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.5.3",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/api.git"
},
"bugs": {
"url": "https://github.com/consento-org/api/issues"
},
"homepage": "https://github.com/consento-org/api#readme"
}