-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 KB
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
{
"name": "basemodelts",
"version": "1.4.5",
"description": "Old BaseModel but in ts and improved",
"main": "rolled/index.js",
"module": "compiled/index.js",
"scripts": {
"compile": "tsc",
"example": "rollup example/app.js --output.format iife --output.file example/bundle.js",
"roll": "rollup compiled/index.js --output.format umd --output.file rolled/index.js --name BaseModel",
"full": "npm run compile && npm run example && npm run roll",
"preversion": "npm run full",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaskar2008/BaseModelTS.git"
},
"author": "kaskar2008",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaskar2008/BaseModelTS/issues"
},
"homepage": "https://github.com/kaskar2008/BaseModelTS#readme",
"devDependencies": {
"rollup": "^0.53.4",
"typescript": "^2.6.2"
}
}