-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ichnos",
"version": "0.0.4",
"description": "",
"keywords": [],
"main": "dist/ichnos.umd.js",
"module": "dist/ichnos.es5.js",
"typings": "dist/types/ichnos.d.ts",
"files": [
"dist"
],
"author": "Tamer Mohamed <tamer.a.elsayed@gmail.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:tamer-mohamed/ichnos.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"postinstall": "npm run bootstrap",
"build": "lerna run --parallel --stream build",
"test": "jest",
"bootstrap": "lerna bootstrap",
"prebuild": "rimraf dist",
"publish": "lerna publish"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^23.3.14",
"@types/node": "^10.11.0",
"@types/ramda": "^0.25.50",
"colors": "^1.3.2",
"commitizen": "^3.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"dom-testing-library": "^3.16.8",
"husky": "^1.0.1",
"jest": "^24.1.0",
"lerna": "^3.10.7",
"lerna-get-packages": "^1.0.0",
"lint-staged": "^8.0.0",
"prettier": "^1.14.3",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.3",
"rollup": "^0.67.0",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.18.0",
"semantic-release": "^15.9.16",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^24.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.12.0",
"typescript": "^3.3.3333",
"vue": "^2.6.7",
"@types/rollup-plugin-commonjs": "^9.3.1",
"@types/rollup-plugin-json": "^3.0.2",
"@types/rollup-plugin-node-resolve": "^4.1.0",
"@types/rollup-plugin-sourcemaps": "^0.4.2"
},
"dependencies": {
"ramda": "^0.26.1"
}
}