-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "pepperbox",
"version": "0.1.0",
"description": "Parser and Converter for peppermark",
"main": "index.js",
"scripts": {
"build": "rm -rf dist/ && webpack --config configs/webpack.node.js && webpack --config configs/webpack.web.js",
"lint": "eslint --fix './src/**/*.{ts,tsx}'",
"lint:nofix": "eslint './src/**/*.{ts,tsx}'",
"watch": "npm run watch:web",
"watch:web": "rm -rf dist/ && webpack --watch --config configs/webpack.web.js",
"watch:node": "rm -rf dist/ && webpack --watch --config configs/webpack.node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peppermark/pepperbox.git"
},
"keywords": [
"peppermark",
"markdown",
"notes"
],
"author": "Florian Mysliwietz <myslflo1996@yahoo.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/peppermark/pepperbox/issues"
},
"homepage": "https://github.com/peppermark/pepperbox#readme",
"devDependencies": {
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.7.2",
"eslint-loader": "^3.0.3",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"ts-loader": "^6.2.1"
}
}