-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "atom-sorter",
"version": "0.1.0",
"description": "Callback allowing to sort chemical elements (atoms) in Hill order",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src test",
"eslint-fix": "npm run eslint -- --fix",
"test": "run-s testonly eslint",
"test-travis": "eslint src && jest --coverage && codecov",
"testonly": "jest",
"build": "cheminfo build --no-source-map"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo-js/atom-sorter.git"
},
"keywords": [],
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/atom-sorter/issues"
},
"homepage": "https://github.com/cheminfo-js/atom-sorter#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cheminfo-tools": "^1.23.3",
"codecov": "^3.6.5",
"eslint": "^4.19.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"jest": "^21.2.1",
"npm-run-all": "^4.1.5"
}
}