-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "data-structure-visualization",
"version": "1.3.0",
"description": "javascript data structure library",
"main": "index.js",
"scripts": {
"start": "node --experimental-modules server.mjs",
"test": "jest --no-cache test/*.test.js",
"test-spec": "jest --no-cache",
"test-cover": "jest --no-cache --coverage test/*.test.js",
"create-doc": "node_modules/.bin/jsdoc -r lib README.md -t node_modules/docdash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sangw0804/data_structure_JS.git"
},
"keywords": [
"javascript"
],
"author": "sangw0804",
"license": "MIT",
"bugs": {
"url": "https://github.com/sangw0804/data_structure_JS/issues"
},
"homepage": "https://github.com/sangw0804/data_structure_JS#readme",
"dependencies": {
"babel-preset-env": "^1.7.0",
"clone": "^2.1.2",
"docdash": "^1.0.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"jsdoc": "^3.5.5",
"leader-line": "^1.0.5"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"expect": "^23.6.0",
"jest": "^23.6.0"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(clone)/)"
]
}
}