forked from jscrambler/code-integrity-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 872 Bytes
/
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
{
"name": "code-integrity-actions",
"version": "0.0.0",
"description": "Protect your JavaScript application against automated abuse, piracy, tampering, and code theft with enterprise-grade obfuscation, code locks, and self-defensive techniques",
"scripts": {
"build": "find . -mindepth 2 -name action.yml -exec echo '** Build {} **' \\; -execdir ncc build src/index.ts --license licenses.txt -o dist \\;",
"test": "jest"
},
"author": "Jscrambler <[email protected]>",
"license": "ISC",
"dependencies": {
"@actions/core": "1.10.0",
"jscrambler": "6.4.21"
},
"files": [
"main.js",
"**/action.yml",
"**/dist"
],
"devDependencies": {
"@types/jest": "28.1.8",
"@tsconfig/node16": "1.0.3",
"@vercel/ncc": "0.34.0",
"typescript": "4.8.4",
"jest": "28.1.3",
"ts-jest": "28.0.8"
},
"private": true
}