-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
{
"name": "facing-metadata",
"version": "2.0.3",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"test": "./node_modules/.bin/ts-node ./test/test.ts",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "./node_modules/.bin/tsc -outDir dist/cjs",
"build:esm": "./node_modules/.bin/tsc -outDir dist/esm -module ES6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facing-dev/facing-metadata.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/facing-dev/facing-metadata/issues"
},
"homepage": "https://github.com/facing-dev/facing-metadata#readme",
"devDependencies": {
"@types/node": "^20.8.9",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}