-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "@simple-ssi/simple-cesr",
"version": "0.2.4",
"description": "A simple, limited, true-to-spec implementation of the CESR protocol.",
"type": "module",
"access": "public",
"exports": {
".": {
"import": {
"types": "./dist/esm/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/cjs/types/index.d.ts",
"main": "./dist/cjs/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest --testPathIgnorePatterns=standards.test.ts",
"clean": "del-cli ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"formatter": "ts-standard --fix",
"find-unused-dependencies": "depcheck --ignores='buffer, depcheck, ts-jest, @types/jest, jest-ci-spec-reporter, echo-cli'",
"standards-test": "jest ./test/standards/standards.test.ts",
"all-tests": "npm test && npm run standards-test",
"full-build": "npm run all-tests && npm run formatter && npm run find-unused-dependencies && npm run build",
"prepack": "npm run full-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simple-ssi/simple-cesr.git"
},
"keywords": [
"KERI",
"CESR"
],
"author": "Jonathan Rayback",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/simple-ssi/simple-cesr/issues"
},
"homepage": "https://github.com/simple-ssi/simple-cesr#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"del-cli": "^5.0.0",
"depcheck": "^1.4.7",
"echo-cli": "^2.0.0",
"jest": "^29.7.0",
"jest-ci-spec-reporter": "^1.0.3",
"ts-jest": "^29.1.2",
"ts-standard": "^12.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"buffer": "^6.0.3"
},
"engines": {
"node": ">=18.0.0"
},
"ts-standard": {
"ignore": [
"dist"
],
"project": "./configs/tsconfig.eslint.json"
}
}