-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.87 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
{
"$schema": "https://json.schemastore.org/package",
"type": "module",
"name": "prism-ton",
"description": "🔺 Maintained set of TON blockchain programming language definitions for Prism.js",
"keywords": [
"ton",
"the-open-network",
"prismjs",
"tlb",
"fift",
"func",
"tact"
],
"scripts": {
"deps": "yarn install --frozen-lockfile",
"prism:init": "git submodule update --init --recursive && cd .github/submodule-prism && npm ci",
"prism:links": "yarn deps && node .github/create-links.js",
"prism:build": "cd .github/submodule-prism && npm run build",
"test": "yarn test:tact && yarn test:func && yarn test:fift && yarn test:tlb",
"test:tact": "cd .github/submodule-prism && npm run test:languages -- --language tact",
"test:tact:accept": "cd .github/submodule-prism && npm run test:languages -- --language tact --accept",
"test:tact:update": "cd .github/submodule-prism && npm run test:languages -- --language tact --update",
"test:func": "cd .github/submodule-prism && npm run test:languages -- --language func",
"test:func:accept": "cd .github/submodule-prism && npm run test:languages -- --language func --accept",
"test:func:update": "cd .github/submodule-prism && npm run test:languages -- --language func --update",
"test:fift": "cd .github/submodule-prism && npm run test:languages -- --language fift",
"test:fift:accept": "cd .github/submodule-prism && npm run test:languages -- --language fift --accept",
"test:tlb": "cd .github/submodule-prism && npm run test:languages -- --language tlb",
"test:tlb:accept": "cd .github/submodule-prism && npm run test:languages -- --language tlb --accept",
"regex-coverage": "cd .github/submodule-prism && npm run regex-coverage"
},
"devDependencies": {
"@types/prismjs": "^1.26.4",
"symlink-dir": "^5.2.1"
},
"packageManager": "yarn@1.22.22"
}