forked from progfay/scrapbox-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "@progfay/scrapbox-parser",
"version": "7.1.0",
"description": "parse Scrapbox notation to JavaScript Object",
"files": [
"lib",
"esm",
"umd"
],
"main": "./lib/index.js",
"module": "./esm/index.js",
"types": "./lib/index.d.ts",
"unpkg": "./umd/scrapbox-parser.js",
"exports": {
"import": "./esm/index.js",
"require": "./lib/index.js",
"node": "./esm/index.js",
"default": "./lib/index.js"
},
"scripts": {
"build": "run-p build:*",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:esm": "tsc -p ./tsconfig.esm.json",
"build:umd": "webpack",
"prepare": "npm run clean && npm run build",
"clean": "node -e '[`lib`, `esm`, `umd`, `.cjs.tsbuildinfo`, `.esm.tsbuildinfo`].forEach(path => { fs.rmSync(path, {recursive:true, force:true}) })'",
"test": "jest --coverage",
"test:update": "jest --updateSnapshot --no-cache",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint -c ./.eslintrc.js .",
"lint:cspell": "cspell --no-summary '**/*'",
"lint:typescript": "tsc -p ./tsconfig.eslint.json",
"format": "run-s format:prettier format:eslint",
"format:prettier": "prettier --write .",
"format:eslint": "eslint --fix -c ./.eslintrc.js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/progfay/scrapbox-parser.git"
},
"keywords": [
"scrapbox",
"parser"
],
"author": "progfay",
"license": "MIT",
"bugs": {
"url": "https://github.com/progfay/scrapbox-parser/issues"
},
"homepage": "https://github.com/progfay/scrapbox-parser#readme",
"devDependencies": {
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@types/core-js": "2.5.5",
"@types/jest": "27.0.1",
"@types/node": "15.12.4",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"babel-loader": "8.2.2",
"cspell": "5.7.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.4.0",
"jest": "27.0.6",
"jest-snapshot": "27.0.6",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"ts-jest": "27.0.5",
"ts-loader": "9.2.5",
"typescript": "4.3.5",
"webpack": "5.50.0",
"webpack-cli": "4.8.0"
},
"publishConfig": {
"access": "public"
}
}