-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "@movable-internal/data-source.js",
"version": "4.1.0",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"license": "MIT",
"files": [
"dist",
"src",
"tsconfig.json"
],
"scripts": {
"build": "yarn clean && node build.js && tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf dist",
"test": "tsc && karma start --single-run",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@movable/eslint-config": "^0.6.9",
"@movable/eslint-config-typescript": "^0.2.0",
"@movable/prettier-config": "^0.3.6",
"esbuild": "^0.16.17",
"eslint": "^7.19.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.8",
"is-docker": "^2.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-esbuild": "^2.2.5",
"karma-qunit": "^4.1.2",
"lint-staged": "^10.5.3",
"qunit": "^2.19.4",
"rimraf": "^5.0.0",
"sinon": "^15.0.3",
"typescript": "5.0.4"
},
"publishConfig": {
"registry": "https://packagecloud.io/movableink/studio/npm"
},
"dependencies": {
"cropduster": "^8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
}
}