-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 908 Bytes
/
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
{
"name": "@movr/fund-movr-core",
"version": "0.0.1-beta.39",
"description": "Core package for fund movr",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "npm run build:ts",
"build:ts": "tsc",
"lint": "prettier-standard --format '**/*.{ts}'",
"publish:beta": "npm run build && npm publish --tag beta --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "movr",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"prettier-standard": "^16.4.1",
"typescript": "^4.3.5"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}