forked from LGSInnovations/sigfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.48 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
143
{
"name": "sigfile",
"description": "Utilities to reading signal data from files",
"license": "Apache-2.0",
"version": "0.1.9",
"homepage": "https://lgsinnovations.github.io/sigfile",
"main": "dist/sigfile.js",
"files": [
"dist"
],
"author": {
"name": "LGS Innovations, Inc.",
"email": "[email protected]",
"url": "https://www.lgsinnovations.com"
},
"repository": {
"type": "git",
"url": "git://github.com/LGSInnovations/sigfile.git"
},
"bugs": {
"url": "https://github.com/LGSInnovations/sigfile/issues"
},
"licenses": [
{
"type": "apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"sigplot",
"matlab",
"bluefile",
"dsp",
"digital-signal-processing",
"plotting",
"parsing",
"file-parser"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2017": true,
"jest": true
},
"globals": {
"page": true,
"browser": true,
"context": true,
"jestPuppeteer": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"plugins": [
"jest"
],
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
},
"prettier": {
"overrides": [
{
"files": [
"*.js",
"src/**/*.js",
"tests/**/*.js",
"package.json"
],
"options": {
"singleQuote": true,
"tabWidth": 2
}
}
]
},
"scripts": {
"build:prod": "npm run clean && npm run lint && npx webpack --progress --mode=production",
"build:dev": "npm run clean && npm run lint && npx webpack --progress --mode=development",
"clean": "rm -rf ./dist",
"eslint": "npx eslint . --fix --ignore-path .gitignore",
"eslint:check": "npx eslint . --ignore-path .gitignore",
"generate-docs": "rm -rf ./doc/; npx jsdoc --configure .jsdoc.json --verbose",
"lint": "npm run prettier && npm run eslint",
"prettier": "npx prettier --ignore-path .gitignore --write \"**/*{.js,.css,.json}\"",
"prettier:check": "npx prettier --check --ignore-path .gitignore --write \"**/*{.js,.css,.json}\"",
"test:browser": "npx jest --coverage -c jest.browser.config.js --env=jsdom",
"test:node": "npx jest --coverage -c jest.node.config.js",
"test": "npm run test:node && npm run test:browser"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"coverage": "^0.4.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"http-server": "^0.12.1",
"jest": "^25.3.0",
"jest-cli": "^25.3.0",
"jest-puppeteer": "^4.4.0",
"jsdoc": "^3.6.4",
"minami": "^1.2.3",
"prettier": "^2.0.4",
"puppeteer": "^3.0.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}