-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.62 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
{
"name": "@microbit/microbit-fs",
"version": "0.9.2",
"description": "Manipulate files in a micro:bit MicroPython Intel Hex file.",
"keywords": [
"microbit",
"micropython",
"filesystem",
"fs"
],
"main": "./dist/bundles/microbit-fs.umd.js",
"mainMin": "./dist/bundles/microbit-fs.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-fs"
},
"config": {
"umdName": "microbitFs"
},
"author": "Micro:bit Educational Foundation <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.5",
"npm": ">=6.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",
"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}\"",
"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"
},
"peerDependencies": {
"tslib": ">=1.9.0"
},
"dependencies": {
"@microbit/microbit-universal-hex": "0.2.2",
"nrf-intel-hex": "1.3.0",
"text-encoder-lite": "2.0.0"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@babel/polyfill": "~7.8.7",
"@babel/preset-env": "~7.9.5",
"@rollup/plugin-commonjs": "~11.1.0",
"@rollup/plugin-json": "~4.0.2",
"@rollup/plugin-node-resolve": "~7.1.3",
"@types/jest": "~26.0.20",
"@types/node": "~13.11.1",
"@types/prettier": "~2.0.0",
"jest": "~26.6.3",
"jest-watch-typeahead": "~0.6.1",
"prettier": "~2.0.5",
"rollup": "~2.6.1",
"rollup-plugin-babel": "~4.4.0",
"rollup-plugin-sourcemaps": "~0.5.0",
"rollup-plugin-terser": "~7.0.2",
"shx": "^0.3.2",
"ts-jest": "~26.4.4",
"tslib": "~1.14.1",
"tslint": "~6.1.1",
"tslint-config-prettier": "~1.18.0",
"tslint-config-standard": "~9.0.0",
"tslint-etc": "~1.10.1",
"typedoc": "~0.19.2",
"typedoc-neo-theme": "~1.1.0",
"typescript": "~3.9.7"
}
}