-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1016 Bytes
/
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
{
"name": "float16",
"version": "0.0.1",
"description": "Encode and decode float16",
"main": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-only && npm run eslint",
"test-coverage": "jest --coverage",
"test-travis": "npm run test-coverage && npm run eslint",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/float16.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/float16/issues"
},
"homepage": "https://github.com/cheminfo/float16#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.7.1",
"npm-run-all": "^4.1.5"
}
}