-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 3.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "csvautofilljs",
"version": "1.0.15",
"description": "csvautofilljs is a front-end library package that serves one purpose: fill the form without have to re-type the same value over and over again.",
"keywords": [
"csv",
"csvautofill",
"autofill",
"autofilljs",
"csvautofilljs"
],
"main": "dist/csvautofilljs.umd.js",
"module": "dist/csvautofilljs.es5.js",
"typings": "dist/types/csvautofilljs.d.ts",
"files": [
"dist"
],
"author": "Angela Melinda <angela.melinda@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/angelamelinda/csvautofilljs.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.ts -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged",
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"setupFiles": [
"<rootDir>/setupFile.ts"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branchs": 60,
"functions": 60,
"lines": 60,
"statements": 60
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/file-saver": "^2.0.0",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.2",
"@types/lodash.some": "^4.6.5",
"@types/node": "^11.9.5",
"@types/papaparse": "^4.5.9",
"awesome-typescript-loader": "^5.2.1",
"colors": "^1.3.2",
"commitizen": "^3.0.7",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.0.1",
"jest": "^24.4.0",
"jest-config": "^24.1.0",
"jsdom": "^13.2.0",
"lint-staged": "^8.1.4",
"lodash.camelcase": "^4.3.0",
"lodash.some": "^4.6.0",
"prettier": "^1.16.4",
"prompt": "^1.0.0",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"rollup": "^1.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.19.3",
"semantic-release": "^15.13.3",
"source-map-loader": "^0.2.4",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"file-saver": "^2.0.1",
"papaparse": "^4.6.3"
}
}