-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.31 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": "sourcemap-copy",
"version": "0.0.03",
"description": "Copy Sources to publish folder and update Sourcmap references in .map files",
"main": "./dist/sourcemap-copy.js",
"types": "./dist/sourcemap-copy.d.ts",
"files": [
"./dist"
],
"bin": {
"sourcemap-copy": "./dist/sourcemap-copy.js"
},
"scripts": {
"afterinstall": "npm run build && npm run packandpublish",
"build": "npx tsc --outDir ./dist",
"copyjsonconfig": "cp sourcemap-copy.json dist || copy sourcemap-copy.json dist",
"installandeverything": "npm install && npm run afterinstall",
"postbuild": "npm run copyjsonconfig && npm run zaptarballs && node dist/sourcemap-copy.js && npm pack",
"pack": "npm run zaptarballs && npm pack",
"packandpublish": "npm run pack && npm run publish",
"publish": "npm test && npm publish --access public",
"test": "ts-node ./node_modules/jasmine/bin/jasmine",
"zaptarballs": "rm *.tgz || del *.tgz"
},
"dependencies": {
"ts-command-line-args": "2.5.1"
},
"devDependencies": {
"@types/jasmine": "^4.3.5",
"@types/node": "^20.5.4",
"husky": "^8.0.3",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"author": "Nathan Syfrig",
"license": "ISC"
}