-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.7 KB
/
package.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "codestamp",
"version": "1.0.0",
"description": "A language-agnostic tool for signing and verifying your (codegen'd) files and contents.",
"source": "src/index.ts",
"bin": {
"codestamp": "./bin/cli.js"
},
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"types": "./dist/index.d.ts",
"files": [
"bin",
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && microbundle --target node",
"build:watch": "microbundle watch --target node",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc",
"docs:write": "ts-node --transpile-only scripts/generate-docs.ts --write",
"docs:check": "ts-node --transpile-only scripts/generate-docs.ts",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts}\" --ignore-path .gitignore",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts}\" --ignore-path .gitignore",
"legit": "npm run build && npm run typecheck && npm run test && npm run docs:check && npm run prettier:check",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^4.1.2",
"glob": "^7.2.0",
"jest-diff": "^27.4.6",
"minimist": "^1.2.5",
"replace-string": "^3.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/shelljs": "^0.8.11",
"husky": "^7.0.4",
"jest": "^27.4.7",
"microbundle": "^0.14.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"workspaces": [
"examples/*"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"jest": {
"clearMocks": true,
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.*"
],
"globalSetup": "<rootDir>/config/jest.globalSetup.ts",
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/keyz/codestamp.git"
},
"keywords": [
"codegen",
"codestamp",
"gen",
"generated",
"generator",
"hash",
"integrity",
"language-agnostic",
"shasum",
"sign",
"signature",
"signedsource",
"signing",
"stamp",
"validate",
"validation",
"verification",
"verify"
],
"author": "Keyan Zhang",
"license": "MIT",
"bugs": {
"url": "https://github.com/keyz/codestamp/issues"
},
"homepage": "https://github.com/keyz/codestamp#readme"
}