-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "@kilterset/auth0-actions-testing",
"version": "0.3.4",
"description": "Test and develop Auth0 Actions or Okta CIC Actions locally.",
"repository": "https://github.com/kilterset/auth0-actions-testing",
"homepage": "https://github.com/kilterset/auth0-actions-testing#readme",
"bugs": "https://github.com/kilterset/auth0-actions-testing/issues",
"keywords": [
"auth0",
"okta",
"cic",
"actions",
"testing"
],
"scripts": {
"test": "npm run test:src && npm run test:examples",
"test:src": "node --test $(find dist -name *.test.js)",
"test:examples": "node --test examples",
"build": "tsc --build && npm run build:copy-declarations",
"build:watch": "tsc --watch",
"build:clean": "rm -rf dist; npm run build",
"build:copy-declarations": "cd src && rsync -Rv $(find . -name '*.d.ts') ../dist/",
"release": "npm run build:clean && [ -d \"dist\" ] && npm publish --access public"
},
"contributors": [
"Pete Nicholls <pnicholls@kilterset.com>",
"Matt Wratt <mwratt@kilterset.com>"
],
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@types/chance": "^1.1.6",
"@types/fetch-mock": "^7.3.8",
"@types/node": "^20.11.20",
"chance": "^1.1.11",
"fetch-mock": "^11.1.5",
"fishery": "^2.2.2",
"node-fetch": "^2.7.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts"
}