-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.39 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
{
"name": "random-object-stream",
"version": "1.0.1",
"engines": {
"node": "~8.4.0"
},
"description": "random-object-stream is a tiny utility for generating a random object stream for unit testing.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf factory lib",
"prepare": "npm run build && mkdir lib && cp -R factory/source/* lib && rm -rf factory",
"release": "standard-version",
"test": "jest"
},
"jest": {
"bail": true,
"resetModules": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testMatch": [
"**/*.spec.ts?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/random-object-stream.git"
},
"keywords": [
"jest",
"stream"
],
"author": "Alvis HT Tang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvis/random-object-stream/issues"
},
"homepage": "https://github.com/alvis/random-object-stream#readme",
"devDependencies": {
"@types/jest": "^20.0.7",
"@types/node": "^8.0.20",
"jest": "^20.0.4",
"standard-version": "^4.2.0",
"ts-jest": "^20.0.10",
"typescript": "^2.4.2"
}
}