forked from migueldelmazo/micro-tasks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.05 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
{
"name": "micro-tasks",
"description": "Convert a list of tasks (asynchronous or not) into a promise and execute it",
"version": "0.1.0",
"main": "src/index.js",
"authors": [
"Miguel del Mazo <[email protected]>"
],
"keywords": [
"declarative programming"
],
"license": "Apach(MIT OR Apache-2.0)",
"scripts": {
"start": "node ./examples/hello-world.js --watch",
"devtool": "./node_modules/.bin/devtool ./examples/hello-world.js --watch",
"docs": "node ./docs/docs.js",
"dev-docs": "./node_modules/.bin/onchange './**/*.js' -- npm run docs",
"lint": "./node_modules/.bin/eslint --ext .js --ignore-path .gitignore ."
},
"dependencies": {
"lodash": "^4.17.4",
"mongodb": "^2.2.33",
"mysql": "^2.15.0"
},
"devDependencies": {
"devtool": "^2.3.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jsdoc-to-markdown": "^3.0.1"
}
}