Skip to content

Commit 036a6bc

Browse files
[N/A] - Added .npmignore file.
1 parent 90cd0bc commit 036a6bc

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
**/*
2+
!dist/src/*
3+
!package.json
4+
!LICENSE
5+
!README.md

package.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
{
2-
"name": "aspose-tasks-cloud",
2+
"name": "@asposecloud/aspose-tasks-cloud",
33
"version": "19.10.0",
44
"description": "Aspose.Tasks Cloud SDK for Node.js",
5-
"main": "src/api.ts",
5+
"homepage": "https://products.aspose.cloud/tasks",
6+
"readmeFilename": "README.md",
7+
"main": "dist/src/api.js",
8+
"types": "dist/src/api.d.ts",
69
"scripts": {
7-
"test": "mocha -r ts-node/register test/**/*.ts --no-timeouts"
10+
"test": "mocha -r ts-node/register test/**/*.ts --no-timeouts",
11+
"compile": "tsc --build tsconfig.json"
812
},
13+
"files": [
14+
"dist/src"
15+
],
916
"keywords": [
1017
"Aspose",
1118
"Cloud",
@@ -23,6 +30,9 @@
2330
"url": "https://github.com/aspose-tasks-cloud/aspose-tasks-cloud-node.git"
2431
},
2532
"license": "MIT",
33+
"engines": {
34+
"node": ">=6.15"
35+
},
2636
"devDependencies": {
2737
"request-debug": "^0.2.0",
2838
"typescript": "^3.6.3"

0 commit comments

Comments
 (0)