-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.66 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.66 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@microsoft/dynamicproto-js",
"description": "Microsoft Dynamic Proto Utility",
"version": "2.0.3",
"keywords": [
"javascript",
"dynamic prototype",
"microsoft",
"typescript",
"inheritence",
"minification",
"application insights"
],
"main": "./lib/dist/es5/node/dynamicproto-js.js",
"module": "./lib/dist-es5/DynamicProto.js",
"types": "./lib/types/DynamicProto.d.ts",
"directories": {
"doc": "lib/docs"
},
"scripts": {
"ci-install": "node common/scripts/install-run-rush.js check && node common/scripts/install-run-rush.js update",
"build": "node common/scripts/install-run-rush.js rebuild && npm run docs",
"test": "grunt dynamicprototest",
"rollup": "grunt rollup",
"rupdate": "node common/scripts/install-run-rush.js update --recheck --purge --full",
"docs": "typedoc",
"fullClean": "git clean -xdf && npm install && rush update --recheck --purge --full",
"fullCleanBuild": "npm run fullClean && npm run build",
"npm_pack": "copyfiles README.md LICENSE lib && cd lib && npm pack",
"npm_publish": "cd lib && node ../tools/release-tools/npm_publish.js .",
"npm-package": "node ./tools/release-tools/npm_package.js",
"serve": "grunt serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/DynamicProto-JS.git"
},
"author": "Microsoft Application Insights Team",
"sideEffects": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/DynamicProto-JS/issues"
},
"homepage": "https://github.com/microsoft/DynamicProto-JS#readme",
"overrides": {
"glob": "7.2.3",
"form-data": "^2.5.5"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.13.0 < 2.x"
},
"devDependencies": {
"@microsoft/rush": "5.169.3",
"@nevware21/grunt-eslint-ts": "^0.5.2",
"@nevware21/grunt-ts-plugin": "^0.5.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"archiver": "^5.3.0",
"connect": "^3.7.0",
"copyfiles": "^2.4.1",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-connect": "^5.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^4.0.0",
"grunt-contrib-uglify": "^5.2.1",
"grunt-run": "^0.8.1",
"rollup": "^3.20.0",
"rollup-plugin-cleanup": "^3.2.1",
"typedoc": "^0.26.6",
"typescript": "^4.9.5"
}
}