-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "toio-visual-programming",
"version": "1.0.0",
"description": "Visual programming for \"toio\"",
"main": "./dist/index.js",
"author": "Sony Interactive Entertainment Inc.",
"license": "BSD-3-Clause",
"homepage": "https://toio.io/programming/visual-programming.html",
"private": true,
"scripts": {
"build": "parcel build --no-minify src/index.ts",
"lint": "tslint 'src/**/*.ts' 'tests/**/*.ts' && markdownlint README.md",
"test": "jest tests",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:update": "jest --updateSnapshot"
},
"dependencies": {
"base64-js": "^1.3.0",
"format-message": "^6.2.1",
"p-cancelable": "^1.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-intl": "^2.8.0",
"scratch-vm": "^0.2.0-prerelease.20190314205043"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.11.3",
"jest": "^24.5.0",
"markdownlint-cli": "^0.14.0",
"parcel-bundler": "^1.12.2",
"parcel-plugin-url-loader": "^1.3.1",
"ts-jest": "^24.0.0",
"tslint": "^5.14.0",
"typescript": "^3.3.3333"
}
}