-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"private": true,
"author": "Tushar Mathur <[email protected]>",
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"description": "A type-safe functional module that solves practical IO problems for node and the browser.",
"keywords": [
"io",
"functional",
"typescript",
"pure",
"promise"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/qio.git"
},
"scripts": {
"lint": "tslint --project .",
"postinstall": "yarn tsc -b && node packages/scripts/lib/Symlink.js",
"prepublishOnly": "tsc -d",
"prettier": "git ls-files | grep -E '.*\\.(ts)$' | xargs prettier --write --config=.prettierrc",
"test": "mocha --config=packages/chai/.mocharc.yml ./packages/**/__tests__/*.test.js",
"doc": "./scripts/docs.sh",
"doc:typedoc": "yarn typedoc --plugin typedoc-plugin-markdown",
"example": "node packages/example/guess-the-number/src/Run",
"start": "yarn workspace @qio/website start",
"commit:doc": "git add packages/docs && git commit -m 'docs(*): update docs \n\naffects: @qio/docs'",
"commit:website": "git add packages/website && git commit -m 'website(*): update website \n\naffects: @qio/website'"
},
"version": "0.0.0-development",
"devDependencies": {
"cz-lerna-changelog": "^2.0.2",
"lerna": "^3.20.2",
"mocha": "^8.2.0",
"prettier": "^2.0.2",
"semantic-release": "^17.0.4",
"ts-codemod": "^4.0.4",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.10",
"typescript": "^4.0.3",
"typescript-tslint-plugin": "^0.5.5"
},
"workspaces": [
"packages/*"
],
"name": "qio"
}