-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 KB
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
{
"name": "easyjs-typescript-lib",
"version": "1.0.0",
"description": "Building Lib By Typescript",
"main": "dist/lib.js",
"types": "src/lib.d.ts",
"module": "src/lib.js",
"scripts": {
"clean": "easy clean",
"dev": "easy dev",
"start": "concurrently \"npm run dev\" \"npm run server\"",
"debug": "easy build test",
"build": "tsc && easy build",
"server": "easy server -p 5000 -i example/index.html"
},
"dependencies": {
"typescript": "^3.8.3"
},
"devDependencies": {
"@easy-team/easywebpack-cli": "^4.0.0",
"@easy-team/easywebpack-js": "4.0.0",
"concurrently": "^5.1.0",
"eslint": "^4.5.0",
"eslint-config-eslint": "^4.0.0",
"ts-loader": "^7.0.0"
},
"keywords": [
"webpack lib",
"typescript lib"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"test/*.test.js"
]
},
"files": [
"dist",
"src",
".gitignore",
"README.md",
"tsconfig.json",
"webpack.config.js",
"example/index.html"
],
"ci": {
"version": "8, 10, 12"
},
"repository": {
"type": "git",
"url": "git+http://github.com/easy-team/awesome.git"
},
"homepage": "http://github.com/easy-team/awesome#readme",
"author": "hubcarl@126.com"
}