-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "cpage",
"version": "1.3.0",
"description": "Cpage.js是一款轻量级的前端框架,使用TypeScript开发,可以方便地进行组件化开发,语法统一、简介明了,不依赖于第三方框架,适合中小项目开发。框架同时支持es5与es6语法,可参考example中示例。",
"main": "dist/bundle.js",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"test": "mocha -r ./node_modules/ts-node/register test/**/*_spec.ts --reporter mochawesome",
"build": "webpack",
"build:types": "tsc --project tsconfig.json",
"watch": "webpack -p -w",
"wh": "webpack-dev-server --hot",
"tslint": "tslint \"src/**/*.ts\" --force",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cpagejs/Cpage.js.git"
},
"keywords": [
"cpage",
"Cpage.js",
"js",
"javascript",
"chen.js",
"TypeScript",
"mocha",
"chai",
"test"
],
"author": "夏小宅",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.6",
"@types/chai": "^4.2.7",
"@types/chai-dom": "^0.0.8",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-dom": "^1.8.1",
"clean-webpack-plugin": "^3.0.0",
"vuepress": "1.9.7",
"jsdom": "^26.0.0",
"mocha": "^7.0.0",
"mochawesome": "^4.1.0",
"sinon": "^8.1.0",
"sinon-chai": "^3.4.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tslint": "^5.20.1",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"bugs": {
"url": "https://github.com/cpagejs/Cpage.js/issues"
},
"homepage": "https://github.com/cpagejs/Cpage.js#readme",
"directories": {
"example": "example",
"test": "test"
}
}