-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.53 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
{
"name": "flic-hub-sdk",
"version": "1.0.0",
"description": "Companion scripts for building Flic Hub SDK packages",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"prelint": "npm run format",
"watch": "rollup -c --watch",
"build": "rollup -c",
"prebuild": "npm run lint",
"help": "rollup --help",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/indieisaconcept/flic-hub-sdk.git"
},
"keywords": [
"flic",
"hub",
"sdk"
],
"author": "indieisaconcept <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/indieisaconcept/flic-hub-sdk/issues"
},
"lint-staged": {
"*.{js,ts}": "npm run lint"
},
"gitHooks": {
"pre-commit": "npx lint-staged"
},
"homepage": "https://github.com/indieisaconcept/flic-hub-sdk#readme",
"devDependencies": {
"@rollup/plugin-multi-entry": "4.1.0",
"@rollup/plugin-typescript": "8.2.5",
"@types/node": "16.10.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"fast-glob": "3.2.7",
"http-method-enum": "1.0.0",
"lint-staged": "11.1.2",
"prettier": "2.4.1",
"rollup": "2.58.0",
"rollup-plugin-banner": "0.2.1",
"rollup-plugin-node-externals": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"tslib": "2.3.1",
"typescript": "4.4.3",
"yorkie": "2.0.0"
}
}