-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
94 lines (94 loc) · 2.96 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "visualizer",
"version": "2.157.0",
"description": "Data visualization framework",
"keywords": [
"data",
"visualization",
"framework"
],
"scripts": {
"build": "grunt build",
"build-debug": "node --inspect --debug-brk ./node_modules/grunt-cli/bin/grunt build",
"build-doc": "documentation build src/src/** --github --output docs --format html --sort-order alpha",
"publish-doc": "npm run build-doc && git add docs && git commit -m \"doc: rebuild docs\" && git push origin master",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"install-components": "bower install",
"install-browserified": "grunt browserify",
"postinstall": "npm run install-components && npm run install-browserified",
"prerelease": "grunt bump:prerelease",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run eslint",
"release:minor": "npm run test && grunt bump:minor --release",
"release:patch": "npm run test && grunt bump:patch --release",
"doc": "grunt jsdoc"
},
"homepage": "https://github.com/NPellet/visualizer",
"bugs": {
"url": "https://github.com/npellet/visualizer/issues"
},
"license": "MIT",
"author": "Norman Pellet",
"contributors": [
"Luc Patiny",
"Michaël Zasso",
"Daniel Kostro"
],
"main": "src/init.js",
"repository": {
"type": "git",
"url": "https://github.com/NPellet/visualizer.git"
},
"devDependencies": {
"@babel/types": "^7.3.0",
"add-stream": "^1.0.0",
"bower": "^1.8.8",
"conventional-changelog": "^3.0.5",
"documentation": "^9.1.1",
"eslint": "^7.32.0",
"eslint-config-cheminfo": "1.20.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-no-only-tests": "^2.1.0",
"extend": "^3.0.2",
"grunt": "^1.0.3",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^5.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-rename": "^0.1.4",
"ink-docstrap": "^1.3.2",
"lodash": "^4.17.11",
"mkpath": "^1.0.0",
"semver": "^5.6.0",
"tempfile": "^2.0.0",
"walk": "^2.3.14"
},
"private": true,
"dependencies": {
"@babel/preset-env": "^7.3.1",
"@fortawesome/fontawesome-free": "^6.1.2",
"angularplasmid": "^1.0.5",
"babel-preset-minify": "^0.5.0",
"bio-parsers": "4.2.4",
"country-data": "0.0.31",
"d3-hierarchy": "^1.1.8",
"delay": "^4.3.0",
"eslint-plugin-import": "^2.15.0",
"katex": "^0.10.0",
"mathjs": "^5.4.1",
"mf-parser": "^1.1.6",
"mime-types": "^2.1.21",
"node-jsgraph": "2.1.12",
"openchemlib": "^8.1.0",
"quill-image-drop-module": "github:cheminfo/quill-image-drop-module#4cdc591cfddec42a22ab25b635f34de9e973c86d",
"quill-image-resize-module": "^3.0.0",
"rxn-renderer": "^1.0.1",
"smart-array-filter": "^4.0.0",
"superagent": "^3.8.3",
"twig": "^1.15.4"
}
}