-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "muser",
"version": "1.3.0",
"description": "Framework to help you build complex canvas applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint 'src/**/*.{js,ts}'",
"prettier": "prettier --single-quote --print-width 120 --parser typescript --write \"./src/**/*.ts\"",
"jest": "jest --findRelatedTests --passWithNoTests",
"test": "jest",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json",
"wpbuild": "webpack",
"postbuild": "npm run prettier",
"release": "echo \"have no script yet...\" && exit 1",
"pub": "./scripts/publish.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymssx/muse.git"
},
"keywords": [
"canvas"
],
"author": "ymssx",
"license": "ISC",
"bugs": {
"url": "https://github.com/ymssx/muse/issues"
},
"homepage": "https://github.com/ymssx/muse#readme",
"dependencies": {
"@types/offscreencanvas": "^2019.6.4",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.5",
"lint-staged": "^10.5.3",
"mobx": "^6.0.4",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier",
"npm run lint",
"npm run jest"
]
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.3",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}