forked from miao-lang/miao-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.69 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
{
"name": "miao-lang",
"version": "1.0.5",
"description": "A language of Miao.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build:0": "cross-env NODE_ENV=production webpack --config scripts/webpack.main.prod.config.js",
"build": "cross-env NODE_ENV=production tsc -P tsconfig.json && tscpaths -p tsconfig.json -s src -o build",
"test": "mocha -r espower-typescript/guess -r tsconfig-paths/register \"test/**/*.test.ts\"",
"p": "npm run test && npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miao-lang/miao-lang.git"
},
"author": "oldj",
"license": "MIT",
"bugs": {
"url": "https://github.com/miao-lang/miao-lang/issues"
},
"homepage": "https://github.com/miao-lang/miao-lang#readme",
"dependencies": {
"js-base64": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/assert": "^1.5.6",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"espower-typescript": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"mocha": "^9.1.3",
"power-assert": "^1.6.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tscpaths": "0.0.9",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
}
}