-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "xlsx2seed",
"version": "1.2.1",
"description": "xlsx to seed yamls",
"bin": "./bin/xlsx2seed.js",
"main": "./lib/xlsx2seed.js",
"files": [
"bin",
"lib"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"build": "rimraf bin lib && tsc",
"test": "mocha",
"lint": "tslint -p ."
},
"dependencies": {
"commander": "^4.1.1",
"fso": "^2.7.0",
"js-yaml": "^3.12.0",
"semver": "^7.1.3",
"xlsx": "^0.16.0"
},
"devDependencies": {
"@types/js-yaml": "^3.12.2",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.7",
"@types/power-assert": "^1.5.0",
"@types/semver": "^7.1.0",
"espower-typescript": "^9.0.2",
"mocha": "^7.1.0",
"power-assert": "^1.6.1",
"rimraf": "^3.0.2",
"tslint": "^6.0.0",
"typescript": "^3.8.3"
},
"url": "https://github.com/Narazaka/xlsx2seed.js",
"author": "Narazaka",
"license": "Zlib",
"repository": {
"type": "git",
"url": "https://github.com/Narazaka/xlsx2seed.js.git"
}
}