This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.4 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
{
"name": "web-cell-cli",
"version": "1.0.0",
"description": "Developer command-line tool for WebCell",
"keywords": [
"developer",
"command-line",
"web-cell",
"component",
"package",
"bundle"
],
"author": "[email protected]",
"license": "AGPL-3.0",
"homepage": "https://web-cell.dev/DevCLI/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/DevCLI.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/DevCLI/issues"
},
"module": "source/Component.js",
"main": "dist/Component.js",
"bin": {
"web-cell": "dist/index.js"
},
"directories": {
"lib": "source",
"test": "test"
},
"engines": {
"node": "^6.3.0"
},
"scripts": {
"test": "mocha --exit",
"debug": "mocha --inspect-brk",
"lint": "lint-staged",
"pack": "babel source/ -d dist/ -s --ignore source/install.js",
"prepublishOnly": "npm test && npm run lint && npm run pack",
"build": "npm run prepublishOnly && esdoc",
"start": "web-server docs/ -o",
"install": "node source/install"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run build"
}
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@tech_query/node-toolkit": "^0.9.5",
"amd-bundle": "^1.7.8",
"commander": "^3.0.1",
"dom-renderer": "^1.0.3",
"fs-extra": "^8.1.0",
"jsdom": "^14.1.0",
"less": "^3.10.3",
"puppeteer-browser": "^0.3.8",
"sass": "^1.22.12",
"stylus": "^0.54.7",
"yaml": "^1.6.0"
},
"peerDependencies": {
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"web-cell": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-plugin-inline-import": "^3.0.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-external-webapi-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "6.4.0",
"husky": "^3.0.5",
"koapache": "^1.0.6",
"lint-staged": "^9.2.5",
"mocha": "^6.2.0",
"should": "^13.2.3"
}
}