-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "micromeritics-parser",
"version": "0.0.0",
"description": "Parses an excel workbook containing Micromeritics data",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/micromeritics-parser.git"
},
"keywords": [],
"author": "Benjamin Yiu",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/micromeritics-parser/issues"
},
"homepage": "https://github.com/cheminfo/micromeritics-parser#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@types/jest": "^26.0.23",
"eslint": "^7.30.0",
"eslint-config-cheminfo": "^5.2.4",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.52.7"
},
"dependencies": {
"xlsx": "^0.17.0"
}
}