-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.01 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
95
96
97
98
99
100
101
102
103
{
"name": "@marp-team/marp-react",
"version": "0.0.4",
"description": "Marp renderer component for React",
"license": "MIT",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"contributors": [
{
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/marp-team/marp-react"
},
"main": "lib/index.js",
"module": "module/index.js",
"sideEffects": false,
"types": "lib/index.d.ts",
"files": [
"dist/",
"lib/",
"module/"
],
"scripts": {
"build:cjs": "rimraf lib && tsc --declaration --module commonjs --outDir lib",
"build:module": "rimraf module && tsc --module esnext --outDir module",
"build:worker": "rimraf dist && webpack --mode production",
"check:audit": "yarn audit",
"check:format": "yarn -s format -c",
"check:ts": "tsc --noEmit",
"format": "prettier \"**/*.{css,js,json,jsx,md,scss,ts,tsx,yaml,yml}\"",
"format:write": "yarn -s format --write",
"lint:js": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"prepack": "npm-run-all --parallel check:* lint:* test:coverage --parallel build:*",
"preversion": "run-p check:* lint:* test:coverage",
"storybook": "start-storybook -p 6006",
"test": "jest",
"test:coverage": "jest --coverage",
"version": "curl https://raw.githubusercontent.com/marp-team/actions/v1/lib/scripts/version.js | node && git add -A CHANGELOG.md"
},
"dependencies": {
"camelcase": "^5.3.1",
"he": "^1.2.0",
"htm": "3.0.1",
"nanoid": "^2.1.10",
"style-to-object": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@marp-team/marp-core": "^1.0.1",
"@storybook/addon-knobs": "^5.3.9",
"@storybook/addons": "^5.3.9",
"@storybook/react": "^5.3.9",
"@types/enzyme": "^3.10.4",
"@types/jest": "^25.1.0",
"@types/react": "^16.9.19",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-loader": "^8.0.6",
"codecov": "^3.6.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"markdown-it-container": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.1",
"ts-jest": "^25.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"worker-loader": "^2.0.0"
},
"peerDependencies": {
"@marp-team/marp-core": ">=1.0.1",
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}