This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.82 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
58
59
60
61
{
"name": "@monix/packages",
"repository": {
"type": "git",
"url": "https://github.com/funfix/monix.js.git"
},
"author": "Alexandru Nedelcu <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"postinstall": "lerna bootstrap && ./scripts/update-common.js",
"test": "lerna run test",
"test:prod": "lerna run test:prod",
"lint": "lerna run lint",
"build": "lerna run build",
"clean": "lerna run clean",
"commitmsg": "validate-commit-msg"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-rollup": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"flow-bin": "^0.66.0",
"flow-typed": "^2.3.0",
"fs-extra": "^5.0.0",
"husky": "^0.14.3",
"jsverify": "^0.8.2",
"lerna": "^2.9.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"rimraf": "^2.6.1",
"rollup": "^0.56.1",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tsc-watch": "^1.0.16",
"tslint": "^5.5.0",
"tslint-config-standard": "^7.0.0",
"tslint-eslint-rules": "^5.0.0",
"typedoc": "^0.10.0",
"typescript": "^2.7.2",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
}
}