-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.48 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
{
"name": "@microbit/microbit-universal-hex",
"version": "0.2.2",
"description": "Create micro:bit Universal Hexes.",
"homepage": "https://microbit-foundation.github.io/microbit-universal-hex/",
"keywords": [
"microbit",
"universal-hex",
"universal hex",
"uh"
],
"main": "./dist/bundles/microbit-uh.umd.js",
"mainMin": "./dist/bundles/microbit-uh.umd.min.js",
"module": "./dist/esm5/index.js",
"typings": "./dist/types/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/microbit-foundation/microbit-universal-hex"
},
"config": {
"umdName": "microbitUh"
},
"author": "Micro:bit Educational Foundation <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.5",
"npm": ">=9.0",
"yarn": "^1.0"
},
"scripts": {
"cleanup": "shx rm -rf dist",
"prebuild": "npm run cleanup && npm run verify",
"build": "tsc && rollup -c config/rollup.config.js",
"test": "jest -c ./config/jest.config.js",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --verbose --coverage",
"test:ci": "npm t -- --ci",
"validate-js": "tsc -p ./config/tsconfig.json",
"verify": "npm run validate-js && npm run style && npm run test:ci",
"style": "npm run format -- --list-different && npm run lint",
"style:fix": "npm run format:fix && npm run lint:fix",
"format": "prettier --config prettier.config.js \"**/*.{ts,tsx,js,jsx,css,scss,sass,less,md}\"",
"format:fix": "npm run format -- --write",
"lint": "tslint --project tsconfig.json --format codeFrame",
"lint:fix": "npm run lint -- --fix",
"docs": "typedoc --options config/typedoc.json"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.21",
"@types/prettier": "^2.7.3",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.2.5",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-etc": "^1.13.10",
"typedoc": "^0.25.9",
"typedoc-neo-theme": "^1.1.1",
"typescript": "^4.9.5"
}
}