-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"private": true,
"name": "visualizer-helper",
"version": "0.0.0",
"description": "",
"scripts": {
"babel": "babel . --ignore node_modules --ignore build --out-dir ./build",
"babel-test": "babel . --ignore node_modules --out-dir build --presets @babel/preset-env --plugins transform-es2015-modules-amd-if-required",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"test": "jest && npm run eslint",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/visualizer-helper.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/visualizer-helper/issues"
},
"homepage": "https://github.com/cheminfo-js/visualizer-helper#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-plugin-transform-es2015-modules-amd-if-required": "^1.0.4",
"eslint": "^7.2.0",
"eslint-config-cheminfo": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-no-only-tests": "^2.4.0",
"esm": "^3.2.25",
"jest": "^26.0.1"
},
"dependencies": {}
}