-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "@klippersubs/hashtable",
"version": "1.0.0",
"description": "Hash table implementation.",
"keywords": [
"hashtable",
"hash-table",
"map"
],
"main": "build/index.js",
"module": "source/index.js",
"repository": "klippersubs/hashtable",
"bugs": {
"url": "https://github.com/klippersubs/hashtable/issues",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf ./build && mkdir build",
"prebuild": "yarn run clean",
"build": "babel ./source/index.js --out-file ./build/index.js --source-maps",
"prepublish": "yarn run build",
"postpublish": "yarn run clean",
"lint": "eslint ./source/**/*.js",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.8.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-flowtype": "^2.37.0",
"eslint-plugin-flowtype-errors": "^3.3.2",
"eslint-plugin-prettier": "^2.3.1",
"flow-bin": "^0.56.0",
"jest": "^21.2.1",
"prettier": "^1.7.4"
}
}