-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@mmstudio/global",
"version": "1.1.0",
"description": "global property",
"scripts": {
"test": "npm run build && karma start --single-run",
"dev": "tsc -w & karma start",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile-amd": "tsc -m amd -d false --outFile ./dist/main.js",
"compile-cjs": "tsc -m commonjs -d false",
"compile-esm": "tsc && mv ./dist/index.js ./dist/index.esm.js",
"compile": "npm run compile-esm && npm run compile-amd && npm run compile-cjs",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull git@github.com:mm-core/base.git amd"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/global.git"
},
"homepage": "https://mm-works.github.io",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"蛮蛮",
"蛮蛮工作室",
"插件式",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "taoqf",
"email": "tao_qiufeng@126.com"
},
"maintainers": [
{
"name": "taoqf",
"email": "tao_qiufeng@126.com"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"karma": "latest",
"karma-chai": "latest",
"karma-chrome-launcher": "latest",
"karma-mocha": "latest",
"karma-webpack": "latest",
"mocha": "latest",
"typescript": "next",
"webpack": "latest",
"webpack-cli": "latest"
}
}