-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "convert-machine",
"version": "1.0.2",
"description": "One small tool for you to convert data into what you really need.",
"homepage": "https://github.com/RogerZZZZZ/data-converter",
"scripts": {
"build": "node build/index.js",
"lint": "eslint --fix src/",
"test": "ava test/*.js --verbose"
},
"ava": {
"files": [
"test/*"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"@babel/register"
],
"babel": {
"testOptions": {
"babelrc": false,
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-espower"
]
}
}
},
"author": "RogerZZZZZ (https://github.com/RogerZZZZZ)",
"repository": "RogerZZZZZ/data-converter",
"license": "MIT",
"main": "./dist/convert-machine.js",
"files": [
"dist/*",
"src/*",
"*.json",
"*.js",
"README.md"
],
"keywords": [
"data",
"convert",
"converter",
"match"
],
"devDependencies": {
"@babel/cli": "7.0.0-beta.51",
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-proposal-decorators": "7.0.0-beta.52",
"@babel/plugin-proposal-optional-chaining": "7.0.0-beta.52",
"@babel/plugin-transform-runtime": "7.0.0-beta.52",
"@babel/polyfill": "7.0.0-beta.52",
"@babel/preset-env": "7.0.0-beta.52",
"@babel/preset-es2017": "7.0.0-beta.52",
"@babel/preset-stage-0": "7.0.0-beta.52",
"@babel/preset-stage-3": "7.0.0-beta.52",
"@babel/register": "7.0.0-beta.52",
"@babel/runtime": "7.0.0-beta.52",
"ava": "1.0.0-beta.7",
"babel-core": "^6.26.3",
"babel-eslint": "8.2.1",
"babel-loader": "^8.0.2",
"babel-plugin-espower": "2.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^3.6.0",
"ora": "^3.0.0",
"shelljs": "^0.8.2",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"expr-eval": "^1.2.2"
}
}