UNPKG

2.13 kBJSONView Raw
1{
2 "name": "scratch-storage",
3 "version": "2.0.0",
4 "description": "Load and store project and asset files for Scratch 3.0",
5 "license": "BSD-3-Clause",
6 "homepage": "https://github.com/LLK/scratch-storage#readme",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/LLK/scratch-storage.git",
10 "sha": "6aa3ebea57319215450963b29455cbb344ee59fd"
11 },
12 "main": "./dist/node/scratch-storage.js",
13 "browser": "./src/index.js",
14 "scripts": {
15 "build": "webpack --progress --colors --bail",
16 "coverage": "tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov",
17 "commitmsg": "commitlint -e $GIT_PARAMS",
18 "lint": "eslint .",
19 "tap-integration": "tap ./test/integration/*.js",
20 "tap-unit": "tap ./test/unit/*.js",
21 "tap": "npm run tap-unit && npm run tap-integration",
22 "test": "npm run lint && npm run tap",
23 "version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"",
24 "watch": "webpack --progress --colors --watch",
25 "semantic-release": "semantic-release"
26 },
27 "dependencies": {
28 "arraybuffer-loader": "^1.0.3",
29 "base64-js": "1.3.0",
30 "fastestsmallesttextencoderdecoder": "^1.0.7",
31 "js-md5": "0.7.3",
32 "minilog": "3.1.0",
33 "worker-loader": "^2.0.0"
34 },
35 "devDependencies": {
36 "@babel/core": "7.14.8",
37 "@babel/polyfill": "7.12.1",
38 "@babel/preset-env": "7.14.8",
39 "@commitlint/cli": "8.2.0",
40 "@commitlint/config-conventional": "8.2.0",
41 "@commitlint/travis-cli": "8.2.0",
42 "babel-eslint": "10.1.0",
43 "babel-loader": "8.0.6",
44 "cz-conventional-changelog": "3.3.0",
45 "eslint": "7.27.0",
46 "eslint-config-scratch": "6.0.0",
47 "eslint-plugin-react": "7.24.0",
48 "file-loader": "4.1.0",
49 "husky": "1.3.1",
50 "json": "^9.0.4",
51 "node-fetch": "2.6.1",
52 "semantic-release": "^15.10.5",
53 "tap": "12.1.1",
54 "uglifyjs-webpack-plugin": "2.2.0",
55 "webpack": "4.46.0",
56 "webpack-cli": "3.1.2"
57 },
58 "config": {
59 "commitizen": {
60 "path": "./node_modules/cz-conventional-changelog"
61 }
62 },
63 "release": {
64 "branch": "develop"
65 }
66}