-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 940 Bytes
/
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
{
"name": "@celo/compliance",
"version": "1.0.25",
"description": "",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/celo-org/compliance"
},
"files": [
"lib",
"ofac.sanctions.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./lib",
"build:esm": "tsc --module esnext --outDir ./lib/esm",
"build:cjs": "tsc --module commonjs --outDir ./lib/cjs",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"update_ofac_list": "ts-node scripts/get-latest-sanctions.ts && ts-node scripts/export-sanctions.ts"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/jsdom": "^21.1.4",
"jsdom": "^25.0.0",
"rss-parser": "^3.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}