This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.86 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": "@kirrus/core",
"version": "1.2.0",
"description": "The core module of the kirrus framework",
"keywords": [
"kirrus",
"framework"
],
"repository": "https://github.com/kirruss/core",
"author": "BlueGhostGH <engisoftleaderoff@gmail.com>",
"contributors": [
"Matei Adriel <rafaeladriel11@gmail.com>"
],
"license": "Unlicense",
"engines": {
"node": ">=12.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ./rollup.config.ts",
"dev": "tsnd --respawn --notify=false -T sandbox/index.ts",
"dev-check": "yarn format-check",
"dry-run": "npx --node-arg=\"--require dotenv/config\" semantic-release --dry-run",
"format-check": "prettier --check \"**/*.+(js|json|ts)\"",
"test": "jest --config jest.config.json",
"test-cov": "jest --config jest.cov.config.json",
"ci:build": "rollup -c ./rollup.config.ts",
"ci:format": "prettier --check \"**/*.+(js|json|ts)\"",
"ci:test": "jest --config jest.ci.config.json",
"ci:type-check": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.13",
"@wessberg/rollup-plugin-ts": "^1.3.4",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"rollup": "^2.26.11",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.1.1",
"ts-jest": "^26.3.0",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2"
}
}