UNPKG

2.14 kBJSONView Raw
1{
2 "name": "scratch-storage",
3 "version": "1.3.2",
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": "4423e2176dd9a90b6c0156e309b2187075ea2bab"
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 "js-md5": "0.7.3",
31 "minilog": "3.1.0",
32 "nets": "3.2.0",
33 "text-encoding": "0.7.0",
34 "worker-loader": "^2.0.0"
35 },
36 "devDependencies": {
37 "@babel/core": "^7.4.3",
38 "@babel/polyfill": "7.4.3",
39 "@babel/preset-env": "^7.4.3",
40 "@commitlint/cli": "7.3.1",
41 "@commitlint/config-conventional": "7.3.1",
42 "@commitlint/travis-cli": "7.2.1",
43 "babel-eslint": "10.0.1",
44 "babel-loader": "^8.0.4",
45 "cz-conventional-changelog": "^2.0.0",
46 "eslint": "5.7.0",
47 "eslint-config-scratch": "5.0.0",
48 "eslint-plugin-react": "7.12.4",
49 "file-loader": "3.0.1",
50 "husky": "1.3.1",
51 "json": "^9.0.4",
52 "semantic-release": "^15.10.5",
53 "tap": "12.1.1",
54 "travis-after-all": "^1.4.4",
55 "uglifyjs-webpack-plugin": "^2.1.3",
56 "webpack": "^4.32.0",
57 "webpack-cli": "^3.1.1"
58 },
59 "config": {
60 "commitizen": {
61 "path": "./node_modules/cz-conventional-changelog"
62 }
63 },
64 "release": {
65 "branch": "develop"
66 }
67}