-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "@gollum-ts/annotation",
"version": "5.2.2",
"description": "Add simple persistant annotation on TS class.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esm/index.js",
"typings": "./dist/typings/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:exemples": "node node_modules/typescript/bin/tsc -p exemples/tsconfig.json",
"clean": "rm -fr dist",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git@github.com:GollumJS/gollumts-annotation.git"
},
"keywords": [
"simple",
"annotation",
"typescript",
"persistant",
"decorator"
],
"author": "Damien Duboeuf <smeagolworms4@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GollumJS/gollumts-annotation/issues"
},
"homepage": "https://github.com/GollumJS/gollumts-annotation/blob/master/README.md",
"dependencies": {},
"files": [
"README.mb",
"LICENSE",
"tsconfig.json",
"tsconfig.esm.json",
"tsconfig.test.json",
"package.json",
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}