-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "preact-compat-enzyme",
"version": "0.2.5",
"description": "enzyme的兼容层",
"main": "lib/index",
"files": [
"lib",
"src",
"docs",
"theme",
"README.md",
"HISTORY.md"
],
"license": "MIT",
"keywords": [
"next",
"preact-compat-enzyme"
],
"author": {
"name": "xing.gex",
"email": "[email protected]"
},
"scripts": {
"dev": "next-bin server",
"build-file": "next-bin build",
"build-global": "node ./scripts/global.js",
"build": "npm-run-all build-file build-global",
"push": "node ./scripts/publish.js",
"publish": "npm-run-all build",
"prepublish": "npm-run-all build",
"test": "next-bin test",
"lint": "eslint '@(src|docs)/**/*.@(js|jsx|md)' || true"
},
"repository": {
"type": "git",
"url": "[email protected]:next/preact-compat-enzyme.git"
},
"dependencies": {
"preact": "8.x",
"preact-compat": "3.x"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.1"
}
}