-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.02 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.02 KB
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
{
"name": "basic-csv-parser",
"version": "1.0.2",
"description": "lightweight (1kb gzip, no dependencies) csv string parser for the browser",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist",
"format": "prettier-standard \"{bin,src,spec,stories,stubs}/**/*.[jt]@(s|sx)\"",
"postdist": "npm run uglify",
"prepublish": "npm run test",
"pretest": "npm run dist",
"test": "tape \"spec/**/*.spec.js\"|tap-spec",
"uglify": "terser dist/index.js -c -m --toplevel --define process.env.NODE_ENV=\\\"production\\\" -o dist/index.min.js"
},
"keywords": [
"csv",
"parser"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/basic-csv-parser.git"
},
"bugs": {
"url": "https://github.com/zenyway/basic-csv-parser/issues"
},
"homepage": "https://github.com/zenyway/basic-csv-parser#readme",
"dependencies": {},
"devDependencies": {
"@types/node": "12.6.6",
"@typescript-eslint/eslint-plugin": "1.12.0",
"@typescript-eslint/parser": "1.12.0",
"browserify": "16.3.0",
"bundle-collapser": "1.3.0",
"common-shakeify": "0.6.2",
"envify": "4.1.0",
"http-server": "0.11.1",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"prettier-standard": "9.1.1",
"rimraf": "2.6.3",
"standard": "13.0.2",
"tap-spec": "5.0.0",
"tape": "4.11.0",
"terser": "4.1.2",
"tsify": "4.0.1",
"typescript": "3.5.3",
"uglifyify": "5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier-standard",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
}
}