-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "yassb",
"version": "1.1.1",
"description": "Yet another simple StringBuilder",
"main": "index.js",
"scripts": {
"version": "npx @pika/pack",
"build": "pika build",
"prepublish": "npm run build",
"publish": "pika publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SwiftWinds/yassb.git"
},
"keywords": [
"yet",
"another",
"simple",
"string",
"builder",
"stringbuilder",
"string-builder",
"string_builder",
"strings",
"builders",
"add",
"addLine",
"append",
"appendLine",
"isEmpty",
"build",
"concat",
"concatenate",
"es6",
"console",
"consoles",
"console.log",
"console.log()",
"log",
"logs",
"logging",
"loggings"
],
"author": "SwiftWinds",
"license": "MIT",
"bugs": {
"url": "https://github.com/SwiftWinds/yassb/issues"
},
"homepage": "https://github.com/SwiftWinds/yassb#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/plugin-transform-runtime": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"@pika/cli": "^0.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.1",
"@pika/plugin-build-types": "^0.8.1",
"@pika/plugin-build-web": "^0.8.1",
"@pika/plugin-standard-pkg": "^0.8.1",
"@types/jest": "^24.0.25",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"np": "^5.2.1",
"prettier": "^1.19.1"
},
"dependencies": {
"is-empty": "^1.2.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}