forked from yiminghe/dom-align
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.96 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
{
"name": "dom-align",
"version": "1.12.1",
"description": "Align DOM Node Flexibly ",
"keywords": [
"dom",
"align"
],
"homepage": "http://github.com/yiminghe/dom-align",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/dom-align.git"
},
"bugs": {
"url": "http://github.com/yiminghe/dom-align/issues"
},
"license": "MIT",
"config": {
"port": 8020
},
"scripts": {
"lint-staged": "lint-staged",
"prettier": "prettier --write \"{src,tests}/**/*.{js,tsx}\"",
"pub": "npm run build && npm publish pkg",
"build": "pack build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"karma": "rc-test run karma",
"saucelabs": "rc-test run saucelabs",
"test": "rc-test run test",
"chrome-test": "rc-test run chrome-test",
"coverage": "rc-test run coverage"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"tests/**/*"
]
}
],
[
"pika-plugin-build-web-babel"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-types"
],
[
"pika-plugin-clean-dist-src"
]
]
},
"devDependencies": {
"@pika/plugin-build-node": "^0.6.0",
"@pika/plugin-build-types": "^0.6.0",
"@pika/plugin-standard-pkg": "^0.6.0",
"@pika/types": "^0.6.0",
"babel-preset-env": "^1.7.0",
"create-react-class": "^15.6.3",
"expect.js": "^0.3.1",
"jquery": "^3.4.1",
"lint-staged": "^9.2.1",
"pika-plugin-build-web-babel": "^0.6.0",
"pika-plugin-clean-dist-src": "^0.1.1",
"pre-commit": "1.x",
"prettier": "^1.18.2",
"rc-test": "6.x",
"rc-tools": "6.x",
"react": "16.x",
"react-dom": "16.x"
},
"lint-staged": {
"*.{tsx,js,jsx,ts}": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
]
}