-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "javascript-excel",
"author": {
"name": "Afzal Ahmad",
"email": "securedeveloper@gmail.com",
"url": "https://github.com/securedeveloper"
},
"description": "A lightweight library to build excel sheet with JavaScript",
"keywords": [
"js-excel",
"javascript-excel",
"excel",
"xlsx",
"js-csv",
"javascript-csv",
"csv"
],
"version": "1.0.3",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run test && npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\"",
"clean": "rm -rf ./lib && mkdir ./lib",
"build:watch": "babel -w src --out-dir lib",
"prepare": "npm run build",
"test": "jest",
"test:size": "bundlesize",
"coverage:publish": "codecov",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-typescript": "7.0.0",
"@types/jest": "23.3.2",
"babel-loader": "8.0.0",
"bundlesize": "0.17.0",
"codecov": "3.1.0",
"jest": "23.6.0",
"ts-jest": "23.1.4",
"typescript": "3.0.3"
},
"bundlesize": [
{
"path": "./lib/*.js",
"maxSize": "5 kB"
}
],
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/securedeveloper/javascript-excel.git"
},
"bugs": {
"url": "https://github.com/securedeveloper/javascript-excel/issues",
"email": "securedeveloper@gmail.com"
},
"homepage": "https://github.com/securedeveloper/javascript-excel#readme"
}