-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "esbuild-plugin-yaml",
"version": "0.0.1",
"description": "Convert YAML files to ES6 modules",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/martonlederer/esbuild-plugin-yaml",
"author": "Marton Lederer <marton@lederer.hu>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "NODE_ENV=production node build.js && tsc --emitDeclarationOnly",
"dev": "NODE_ENV=development node build.js",
"test": "yarn build && cd test && mocha 'index.js' --no-timeout --exit",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"gitHooks": {
"pre-commit": "prettier --write . && git add -A"
},
"files": [
"dist"
],
"dependencies": {
"fs-extra": "^9.1.0",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/fs-extra": "^9.0.7",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.0",
"esbuild": "^0.8.49",
"mocha": "^8.3.0",
"prettier": "^2.2.1",
"typescript": "^4.1.5",
"yorkie": "^2.0.0"
}
}