-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@alanchenchen/cbml-processor",
"version": "1.0.1",
"private": false,
"description": "基于cbml parser和cbml规范实现的构建工具",
"author": "alanchenchen",
"main": "lib/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">= 14.0.0"
},
"keywords": [
"cbml",
"cbml parser",
"cbml generator",
"processor",
"commonet"
],
"license": "MIT",
"scripts": {
"demo": "ts-node example/index.ts",
"build": "tsc",
"test": "jest --colors --verbose",
"updateTestSnapshot": "jest --updateSnapshot",
"prepublishOnly": "npm run build && npm test",
"deploy": "npm publish --access=public"
},
"dependencies": {
"cbml": "^1.0.0-alpha.33",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^16.11.11",
"@types/jest": "^27.0.3",
"jest": "^27.4.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"bugs": {
"url": "https://github.com/alanchenchen/cbml-processor/issues",
"email": "739709491@qq.com"
},
"homepage": "https://github.com/alanchenchen/cbml-processor",
"repository": {
"type": "git",
"url": "https://github.com/alanchenchen/cbml-processor"
}
}