-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "js-bin-tree",
"description": "An implementation of binary trees for JS.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/atesztoth/js-binary-tree"
},
"author": "Attila Tóth",
"version": "1.0.0",
"scripts": {
"dev-ts": "rimraf ts-build && tsc --watch",
"build-ts": "rimraf ts-build && tsc",
"showcase-ts": "rimraf ts-build && tsc && node ./ts-build/example/bin-tree-builder-example.js",
"build-babel": "rimraf babel-build && babel src/flow --out-dir babel-build --source-maps",
"prepare": "rimraf publish-build ts-build babel-build && tsc src/ts/bintree.ts -outDir dist",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"license": "ISC",
"main": "dist/bintree.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-flow": "^7.7.4",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-prettier": "^3.1.1",
"flow": "^0.2.3",
"flow-bin": "^0.112.0",
"flow-typed": "^2.6.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}