-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
74 lines (74 loc) · 2.14 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
{
"name": "remarkable-admonitions",
"version": "0.2.2",
"description": "A remarkable plugin to add admonitions support",
"repository": "https://github.com/favoloso/remarkable-admonitions.git",
"author": "Leonardo Ascione <leonardo@favoloso.team>",
"license": "MIT",
"scripts": {
"dev": "babel src -w -d lib -x '.ts,.tsx'",
"build": "yarn build:lib && yarn build:types",
"prebuild:lib": "rm -rf lib",
"build:lib": "babel src -d lib -x '.ts,.tsx'",
"build:types": "tsc --emitDeclarationOnly",
"check-types": "tsc --noEmit",
"release": "yarn test && yarn build && release-it",
"test": "jest",
"test:dev": "jest --watch",
"test:ci": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit"
},
"files": [
"/lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"remarkable-plugin",
"docusaurus-plugin",
"callout",
"markdown"
],
"husky": {
"hooks": {
"commit-msg": "emoji-commit-lint"
}
},
"release-it": {
"git": {
"tagName": "v${version}",
"commitMessage": "🔖 v${version}"
},
"github": {
"release": true
},
"increment": "conventional:@favoloso/emoji",
"scripts": {
"changelog": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji | tail -n +3",
"beforeStage": "./node_modules/.bin/conventional-changelog -p @favoloso/emoji -i CHANGELOG.md -s"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@favoloso/conventional-changelog-emoji": "^0.9.0",
"@types/dedent": "^0.7.0",
"@types/jest": "^24.0.11",
"@types/remarkable": "^1.7.2",
"babel-jest": "^24.3.1",
"babel-plugin-add-module-exports": "^1.0.0",
"conventional-changelog-cli": "^2.0.12",
"dedent": "^0.7.0",
"husky": "^1.3.1",
"jest": "^24.3.1",
"jest-junit": "^6.3.0",
"prettier": "^1.16.4",
"release-it": "^10.3.1",
"remarkable": "^1.7.1",
"typescript": "^3.3.3333"
}
}