-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "hierarchy-js",
"version": "1.0.3",
"description": "Elegant and lightweight library for working with data structures",
"main": "lib/",
"types": "",
"repository": {
"type": "git",
"url": "https://github.com/maxmarinich/hierarchy-js.git"
},
"scripts": {
"start": "gulp",
"test": "jest",
"test:coverage": "jest && codecov -f 'coverage/clover.xml'",
"coverage": "jest --coverage"
},
"keywords": [
"tree-structure",
"data-structures",
"data-hierarchy",
"flatten",
"flatlist",
"unflatten"
],
"author": "Max Marinich",
"maintainers": [
{
"name": "Max Marinich",
"email": "max.marinich@gmail.com"
}
],
"jest": {
"testEnvironmentOptions": {
"url" : "http://localhost/"
},
"collectCoverageFrom": [
"src/**/*.{js}"
],
"testMatch": [
"**/?(*.)(spec|test).js"
],
"transform": {
"\\.js$": "babel-jest"
},
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxmarinich/hierarchy-js/issues"
},
"homepage": "https://github.com/maxmarinich/hierarchy-js#readme",
"dependencies": {},
"devDependencies": {
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.3",
"gulp-concat": "^2.6.1",
"gulp-strip-comments": "^2.5.2",
"jest": "^28.1.0",
"prettier": "^1.19.1"
}
}