-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "@oscura/iot-data-parse",
"version": "1.0.8",
"description": "设备数据解析",
"author": "Oscura",
"license": "MIT",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"repository": {
"type": "git",
"directory": "https://github.com/xingshuang0122/iot-data-parse.git"
},
"files": [
"dist",
"*.d.ts",
"src"
],
"keywords": [
"iot-data-parse",
"iot",
"parse"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/xingshuang0122/iot-data-parse/issues"
},
"scripts": {
"dev": "tsc",
"dev-file": "ts-node ./src/index.ts",
"rollup": "rollup --config ./config/rollup.config.js",
"test": "jest",
"test-c": "jest --coverage"
},
"engines": {
"node": ">=12.16.3"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"rollup": "^2.33.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"tslint": "^6.1.3",
"typescript": "^4.1.2"
},
"dependencies": {}
}