This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "@codaco/protocol-utils",
"version": "0.0.1-alpha.1",
"description": "Utilities for working with Network Canvas protocols",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "jest",
"lint": "xo",
"start": "esno src/index.ts",
"dev": "tsup --watch",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/complexdatacollective/protocol-utils.git"
},
"keywords": [
"typescript",
"library"
],
"author": "jthrilly",
"license": "MIT",
"bugs": {
"url": "https://github.com/complexdatacollective/protocol-utils/issues"
},
"homepage": "https://github.com/complexdatacollective/protocol-utils#readme",
"devDependencies": {
"@codaco/shared-consts": "0.0.1-alpha.1",
"@faker-js/faker": "^6.1.2",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.11",
"@types/uuid": "^8.3.4",
"esno": "^0.12.1",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"ts-jest": "^27.1.4",
"tsup": "^5.10.1",
"typescript": "^4.5.2",
"uuid": "^8.3.2",
"xo": "0.46.4"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.test.*.map",
"!dist/**/*.test.d.ts"
],
"publishConfig": {
"access": "public"
}
}