-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "metronomes-controller",
"version": "0.0.15",
"description": "Proof of Concept for multiple metronomes back end",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist",
"!./index.ts"
],
"scripts": {
"afterinstall": "npm run build && npm run packandpublish",
"build": "tsc --outDir ./dist",
"installandeverything": "npm install && npm run afterinstall",
"postbuild": "npm run zaptarballs && cd utils && ts-node sourcemap-move.ts && cd .. && 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"
},
"peerDependencies": {
"@types/jasmine": "^4.3.5",
"@types/node": "^20.5.0",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"husky": "^8.0.3",
"sourcemap-copy": "0.0.2"
},
"author": "Nathan Syfrig",
"license": "ISC"
}