-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "@progfay/scrapbox-parser-stream",
"version": "2.0.0",
"description": "Parsing Scrapbox notation with Node.js Stream",
"files": [
"lib",
"esm"
],
"main": "lib/index.js",
"module": "./esm/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@progfay/scrapbox-parser": "^6.0.1"
},
"devDependencies": {
"@types/core-js": "^2.5.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"coveralls": "^3.1.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"jest": "^26.6.1",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"prebuild:cjs": "rm -rf lib",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prebuild:esm": "rm -rf esm",
"build:esm": "tsc -p ./tsconfig.esm.json",
"prepare": "npm run build",
"test": "jest --coverage",
"test:update": "jest --updateSnapshot",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/progfay/scrapbox-parser-stream.git"
},
"keywords": [
"scrapbox",
"parser",
"stream"
],
"author": "progfay",
"license": "MIT",
"bugs": {
"url": "https://github.com/progfay/scrapbox-parser-stream/issues"
},
"homepage": "https://github.com/progfay/scrapbox-parser-stream#readme",
"publishConfig": {
"access": "public"
}
}