-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.6 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
{
"name": "maizal",
"version": "0.4.0",
"description": "Search algorithm framework to find and expand trees.",
"main": "lib/maizal.js",
"scripts": {
"build": "npm run lint && npm run transpile && npm run bundle && size-limit",
"transpile": "babel --delete-dir-on-start -d lib/ src/ ",
"bundle": "rollup -c",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"lint": "eslint ./src",
"test": "nyc mocha test/unit/*/*.js --reporter spec",
"clean": "rm -r ./lib && rm -r ./dist"
},
"files": [
"src",
"lib",
"dist/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/benjides/Maizal"
},
"keywords": [
"js"
],
"author": "Benjamin Hernandez",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"await-to-js": "^2.1.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^0.67.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-terser": "^3.0.0",
"sinon": "^7.1.1",
"size-limit": "^0.21.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"size-limit": [
{
"path": "lib/maizal.js",
"limit": "2 KB"
},
{
"path": "dist/maizal.min.js",
"limit": "2 KB"
}
],
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}