-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 973 Bytes
/
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
{
"name": "esbuild-plugin-filelastmodified",
"version": "2.0.4",
"description": "A esbuild plugin to import the last time the file has been modified.",
"main": "./dist",
"browser": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "cd test && mocha 'index.js' --no-timeout --exit",
"build": "ts-node bundle.ts && tsc --emitDeclarationOnly --outDir dist",
"prepublishOnly": "npm run build"
},
"repository": "https://github.com/g45t345rt/esbuild-plugin-filelastmodified",
"readme": "https://github.com/g45t345rt/esbuild-plugin-filelastmodified#readme",
"author": "g45t345rt",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"esbuild": "^0.13.13",
"mocha": "^9.1.3",
"normalize.css": "^8.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}