-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1023 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
34
35
36
37
38
39
40
{
"name": "efate-uuid",
"version": "1.5.1",
"description": "efate generator for uuid",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"clean": "rm -rf dist",
"precommit": "lint-staged",
"test": "nyc --extension .ts mocha -r ts-node/register -r source-map-support/register src/**/*.tests.ts"
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier:write",
"npm run lint",
"git diff --exit-code --stat"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcteague/efate.git"
},
"keywords": [
"testing",
"fixtures"
],
"author": "John Teague",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcteague/efate/issues"
},
"homepage": "https://github.com/jcteague/efate#readme",
"dependencies": {
"efate": "file:../efate",
"uuid": "^3.3.3"
},
"gitHead": "bb535dacbdb45907de49b394116760d5d24d04d4"
}