-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.08 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
{
"name": "sundryjs",
"version": "0.1.4",
"description": "A collection of useful functions, types, and objects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "7.12.5",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-jest": "^26.6.3",
"babel-loader": "8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "4.1.3"
},
"scripts": {
"compile": "tsc",
"ts": "tsc --noEmit",
"ts:watch": "tsc --noEmit --watch",
"lint": "eslint --ignore-path .eslintignore . --ext ts --ext tsx --ext js",
"lint:fix": "npm run lint --fix",
"test": "NODE_ENV=test jest --onlyChanged",
"test:watch": "NODE_ENV=test jest --watch --onlyChanged",
"test:coverage": "NODE_ENV=test jest --coverage --ci && open ./coverage/index.html",
"test:ci": "NODE_ENV=test jest --coverage --ci --passWithNoTests",
"prettier": "prettier --write **/*.{ts,js,md}",
"ci": "npm run ts && npm run lint && npm run test:ci && npm run buildpackage",
"clean": "rm -rf dist coverage",
"clean:all": "npm run clean && rm -rf node_modules",
"buildpackage": "npm run clean && npm run compile && node system/SetupPackage.js",
"publish": "npm publish --access public ./dist"
},
"author": "Marcel Erz <[email protected]>",
"bugs": {
"url": "https://github.com/marcelerz/sundryjs/issues"
},
"homepage": "https://github.com/marcelerz/sundryjs",
"license": "SEE LICENSE IN LICENSE"
}