-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "arw-parser",
"version": "0.0.2",
"description": "Parse an ARW text file used in some scientific instrument",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "run-s testonly eslint",
"test-travis": "eslint src && jest --coverage && codecov",
"testonly": "jest",
"build": "cheminfo build"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo-js/arw-parser.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/arw-parser/issues"
},
"homepage": "https://github.com/cheminfo-js/arw-parser#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cheminfo-tools": "^1.22.4",
"codecov": "^3.1.0",
"eslint": "^5.9.0",
"eslint-config-cheminfo": "^1.18.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3"
},
"dependencies": {
"xy-parser": "^2.2.2"
}
}