forked from luyilin/json-format-highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@crashmax/json-format-highlight",
"version": "1.1.0",
"description": "Format json and highlight it as well.",
"repository": {
"url": "luyilin/json-format-highlight",
"type": "git"
},
"main": "dist/json-format-highlight.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run test && npm run build && npm run build:example",
"lint": "eslint . --ext .js --ext .vue",
"test": "npm run lint && test-vue-app",
"build": "bili --debug && cp types/* dist/",
"example": "poi",
"build:example": "poi build"
},
"author": "luyilin <[email protected]>",
"license": "MIT",
"poi": {
"entry": "example/index.js",
"dist": "example/dist",
"homepage": "./"
},
"bili": {
"format": [
"cjs",
"umd"
],
"name": "json-format-highlight"
},
"eslintConfig": {
"extends": [
"plugin:vue/recommended"
]
},
"devDependencies": {
"bili": "^2.2.0",
"eslint": "^4.17.0",
"eslint-plugin-vue": "^4.2.2",
"poi": "^9.3.10",
"test-vue-app": "^1.0.0",
"vue-test-utils": "^1.0.0-beta.2"
}
}