This repository was archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.98 KB
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
58
59
60
{
"name": "@kjots/stream-utils",
"version": "0.0.0",
"description": "Stream utilities",
"scripts": {
"build": "tsc --build packages/*",
"build:observable-stream": "tsc --build packages/observable-stream",
"build:stream-observable": "tsc --build packages/stream-observable",
"build:vinyl-fs-observable": "tsc --build packages/vinyl-fs-observable",
"clean": "rimraf 'packages/*/{,!(node_modules)/**/}{*.d.ts,*.js,*.js.map}' packages/*/tsconfig.tsbuildinfo",
"clean:observable-stream": "rimraf 'packages/observable-stream/{,!(node_modules)/**/}{*.d.ts,*.js,*.js.map}' packages/observable-stream/tsconfig.tsbuildinfo",
"clean:stream-observable": "rimraf 'packages/stream-observable/{,!(node_modules)/**/}{*.d.ts,*.js,*.js.map}' packages/stream-observable/tsconfig.tsbuildinfo",
"clean:vinyl-fs-observable": "rimraf 'packages/vinyl-fs-observable/{,!(node_modules)/**/}{*.d.ts,*.js,*.js.map}' packages/vinyl-fs-observable/tsconfig.tsbuildinfo",
"lerna:bootstrap": "lerna bootstrap",
"prepare": "npm-run-all lerna:bootstrap clean build",
"test": "npm-run-all test:observable-stream test:stream-observable test:vinyl-fs-observable",
"test:observable-stream": "npm-run-all test:observable-stream:lint test:observable-stream:mocha",
"test:observable-stream:lint": "tslint --project packages/observable-stream",
"test:observable-stream:mocha": "mocha --require ts-node/register 'packages/observable-stream/{,!(node_modules)/**/}*.spec.ts'",
"test:stream-observable": "npm-run-all test:stream-observable:lint test:stream-observable:mocha",
"test:stream-observable:lint": "tslint --project packages/stream-observable",
"test:stream-observable:mocha": "mocha --require ts-node/register 'packages/stream-observable/{,!(node_modules)/**/}*.spec.ts'",
"test:vinyl-fs-observable": "npm-run-all test:vinyl-fs-observable:lint test:vinyl-fs-observable:mocha",
"test:vinyl-fs-observable:lint": "tslint --project packages/vinyl-fs-observable",
"test:vinyl-fs-observable:mocha": "mocha --require ts-node/register 'packages/vinyl-fs-observable/{,!(node_modules)/**/}*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjots/stream-utils.git"
},
"keywords": [
"stream",
"utils"
],
"author": "Karl Juri Ots <kjots@kjots.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kjots/stream-utils/issues"
},
"homepage": "https://github.com/kjots/stream-utils#readme",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@commitlint/config-lerna-scopes": "^9.1.1",
"@kjots/tslint-rules": "^1.8.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^12.12.50",
"@types/vinyl-fs": "^2.4.11",
"chai": "^4.2.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
}
}