@isense-development/test-npm 2.0.2 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +0 -7
- package/install.js +13 -0
- package/package.json +29 -25
- package/uninstall.js +0 -0
package/index.js
CHANGED
package/install.js
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
let fs = require('fs')
|
2
|
+
const chalk = require('chalk')
|
3
|
+
let execSync = require('child_process').execSync
|
4
|
+
var copyfiles = require('copyfiles');
|
5
|
+
|
6
|
+
var dir = './tmp';
|
7
|
+
if (!fs.existsSync(dir)) {
|
8
|
+
console.log(chalk.yellow('creating `tmp` directory'))
|
9
|
+
fs.mkdirSync(dir);
|
10
|
+
} else {
|
11
|
+
console.log(chalk.yellow('directory `tmp` already exists'))
|
12
|
+
|
13
|
+
}
|
package/package.json
CHANGED
@@ -1,27 +1,31 @@
|
|
1
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
|
-
|
2
|
+
"name": "@isense-development/test-npm",
|
3
|
+
"version": "2.0.6",
|
4
|
+
"description": "test npm",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"install": "install.js",
|
8
|
+
"preinstall": "install.js",
|
9
|
+
"postinstall": "install.js",
|
10
|
+
"uninstall": "uninstall.js",
|
11
|
+
"start": "node index.js",
|
12
|
+
"patch-release": "npm version patch && npm publish --access=public",
|
13
|
+
"minor-release": "npm version minor && npm publish --access=public",
|
14
|
+
"major-release": "npm version major && npm publish --access=public",
|
15
|
+
"patch-release-git": "npm version patch && npm publish --access=public && git push --follow-tags"
|
16
|
+
},
|
17
|
+
"dependencies": {
|
18
|
+
"axios": "^0.24.0"
|
19
|
+
},
|
20
|
+
"devDependencies": {
|
21
|
+
"@progress/kendo-datasource-vue-wrapper": "^2021.3.1109",
|
22
|
+
"@progress/kendo-dropdowns-vue-wrapper": "^2021.3.1109",
|
23
|
+
"@progress/kendo-grid-vue-wrapper": "^2021.3.1109",
|
24
|
+
"@progress/kendo-licensing": "^1.2.1",
|
25
|
+
"@progress/kendo-theme-material": "^4.43.0",
|
26
|
+
"@progress/kendo-ui": "^2021.3.1109",
|
27
|
+
"jszip": "^3.5.0"
|
28
|
+
},
|
29
|
+
"author": "Jan Hemelaers",
|
30
|
+
"license": "ISC"
|
27
31
|
}
|
package/uninstall.js
ADDED
File without changes
|