-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 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
82
83
84
{
"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": {
"build": "npm run build:rollup-plugin && grunt dynamicproto && npm run build:bundle && npm run docs",
"build:rollup-plugin": "cd rollup && npx tsc -p tsconfig.json",
"build:bundle": "cd lib && rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "grunt dynamicprototest",
"rollup": "grunt rollup",
"lint": "grunt lint",
"docs": "typedoc",
"fullClean": "git clean -xdf && npm install",
"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": {
"minimatch": ">=3.1.2"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.13.0 < 2.x"
},
"devDependencies": {
"@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": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"archiver": "^5.3.0",
"connect": "^3.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-security": "^1.7.1",
"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",
"@microsoft/applicationinsights-rollup-es3": "^1.0.1",
"@rollup/plugin-commonjs": "^24.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-minify-es": "^1.1.1",
"uglify-js": "^3.13.7",
"magic-string": "^0.25.5",
"@types/glob": "^7.1.3"
}
}