-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "@my-templates/sample-library",
"version": "1.1.4",
"license": "Apache-2.0",
"author": "lopatnov",
"description": "Demonstrates a sample library template",
"homepage": "https://my-templates.github.io/TypeScript-Library/",
"keywords": [
"TypeScript",
"JavaScript",
"library",
"typescript-library",
"javascript-library"
],
"umdName": "sampleLibrary",
"libraryFile": "library",
"main": "dist/library.js",
"module": "dist/library.es.js",
"types": "dist/library.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/My-Templates/TypeScript-Library.git"
},
"bugs": {
"url": "https://github.com/My-Templates/TypeScript-Library/issues"
},
"scripts": {
"build": "rollup -c rollup.config.ts",
"watch": "rollup -cw rollup.config.ts",
"prepublish": "npm run increment-version",
"increment-version": "npm version patch -git-tag-version false -allow-same-version true",
"configure-npm": "node ./set-registry.js -s https://registry.npmjs.org",
"configure-gpr": "node ./set-registry.js -s https://npm.pkg.github.com",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@lopatnov/rollup-plugin-uglify": "^2.1.1",
"@types/jest": "^27.0.2",
"@types/typescript": "^2.0.0",
"jest": "^27.2.4",
"jest-config": "^27.2.4",
"rollup": "^2.58.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.30.0",
"terser": "^5.9.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}