-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "@sugarlabs/musicblocks-v4-lib",
"version": "0.2.0",
"description": "The core of the new Music Blocks (v4) application",
"repository": {
"type": "git",
"url": "git+https://github.com/sugarlabs/musicblocks-v4-lib.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"musicblocks"
],
"author": "Anindya Kundu <[email protected]> (https://github.com/meganindya/)",
"license": "AGPL-3.0",
"main": "index.js",
"types": ".",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^3.1.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"textlint": "^12.1.0",
"textlint-rule-no-dead-link": "^4.8.0",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-terminology": "^2.1.5",
"ts-jest": "^27.1.3",
"typescript": "4.5.5"
},
"dependencies": {
"uuid": "^8.3.2"
},
"scripts": {
"build": "rm -rf dist/* && tsc -p . && cp -R src/@types dist/@types",
"test": "jest --passWithNoTests --verbose src/syntax src/library src/execution src/library",
"check": "tsc --noEmit",
"lint": "eslint src/**/*.ts && textlint --rule terminology --rule no-empty-section --rule no-dead-link README.md",
"prettify": "prettier --write src/@types src/syntax src/execution src/library"
}
}