-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "@simulacrum/auth0-simulator",
"version": "0.9.0",
"description": "Run local instance of Auth0 API for local development and integration testing",
"main": "dist/index.js",
"bin": "bin/index.js",
"scripts": {
"clean": "rimraf *.tsbuildinfo dist",
"test": "echo noop",
"prepack": "echo 'tsc --build tsconfig.dist.json && copy-cli \"./src/views/**/*.png\" ./dist/views/'",
"build": "npm run prepack",
"lint": "echo noop",
"start": "node dist/start.js",
"watch": "ts-node -P ./tsconfig.watch.json ./watch.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/simulacrum.git"
},
"files": [
"bin/**/*",
"dist/**/*"
],
"keywords": [
"simulation",
"emulation",
"authentication",
"auth0",
"mock",
"mocking",
"stubbing",
"integration testing"
],
"author": "Frontside Engineering <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thefrontside/simulacrum/issues"
},
"homepage": "https://github.com/thefrontside/simulacrum#readme",
"dependencies": {},
"devDependencies": {},
"volta": {
"extends": "../../package.json"
}
}