-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1014 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
{
"name": "@quadient/scaler-scripting-api",
"version": "0.2.0",
"description": "This package provides TypeScript type definitions (d.ts) for scripting in Inspire Scaler's Script module.",
"keywords": [
"Scaler",
"scripting",
"API"
],
"homepage": "https://github.com/quadient/scaler-scripting-api",
"bugs": {
"url": "https://github.com/quadient/scaler-scripting-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quadient/scaler-scripting-api.git"
},
"license": "MIT",
"author": "o-su",
"types": "./dist/index.d.ts",
"scripts": {
"build-helpers": "tsc ./src/helpers.ts --declaration --strict --target es5 --outDir ./dist",
"copy-definitions": "cp ./src/index.d.ts ./dist/index.d.ts",
"build": "npm run build-helpers && npm run copy-definitions",
"prepack": "npm install && npm run build"
},
"devDependencies": {
"typescript": "*"
}
}