-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 888 Bytes
/
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
{
"name": "knex-seed-xlsx",
"version": "0.0.2",
"description": "Knex seed from xlsx file",
"main": "lib/index.js",
"repository": "https://github.com/ucokfm/knex-seed-xlsx",
"author": "Ucok Freddy <ucokfm@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"prepare": "tsc"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/knex": "^0.14.16",
"jest": "^23.4.2",
"ts-jest": "^23.0.1",
"typescript": "^2.9.2"
},
"peerDependencies": {
"knex": "^0.15.1"
},
"dependencies": {
"xlsx": "^0.13.2"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}