-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "himd",
"version": "0.0.1",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/k0michi/himd.git"
},
"author": "Komichi <[email protected]> (https://koyomiji.com/)",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.5",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"scripts": {
"build:esm": "tsc --module esnext --outDir esm --declaration true",
"build:cjs": "tsc --module commonjs --outDir cjs",
"build": "yarn build:esm && yarn build:cjs",
"clean": "rm -rf cjs esm",
"test": "mocha",
"prepare-publish": "yarn test && yarn clean && yarn build"
},
"files": [
"cjs",
"esm"
],
"bugs": {
"url": "https://github.com/k0michi/himd/issues"
},
"homepage": "https://github.com/k0michi/himd#readme",
"description": "A library to parse indented text files.",
"dependencies": {
"hipt": "^0.0.3"
}
}