-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@victorzimnikov/number-to-words",
"version": "0.0.9",
"description": "Число прописью",
"main": "index.js",
"keywords": [
"words",
"number",
"number to words"
],
"repository": "https://github.com/victorzimnikov/number-to-words",
"author": {
"email": "victor.zimnikov@yandex.ru",
"name": "Victor Zimnikov"
},
"license": "MIT",
"scripts": {
"test": "jest",
"dts": "tsc --noEmit",
"pika:version": "pika",
"version": "npm run build",
"pika:build": "pika build",
"test:coverage": "jest --coverage",
"ci": "npm-run-all format lint dts",
"build": "npm-run-all ci test pika:build",
"pika:publish": "pika publish --no-tests",
"lint": "eslint --quiet \"src/**/*.{tsx,ts,js}\"",
"format": "prettier --write \"src/**/*.{tsx,ts,js}\""
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
]
]
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
}
}