-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "synchronous-ify",
"version": "1.1.0-SNAPSHOT",
"description": "A minimum package to run asynchronous job synchronously",
"main": "src/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"test": "standard --fix test/index.js && node test/index.js",
"lint:gulp": "gulp lint",
"lint": "npm run lint:gulp -s",
"docs:gulp": "gulp docs",
"docs": "npm run docs:gulp -s",
"styles": "standard --fix",
"git:precommit": "npm run docs && git add . && git commit -am \"Precommit made from NPM\" && git push"
},
"keywords": [
"Fiber",
"Synchronous",
"Asynchronous",
"Sync",
"Async",
"Promise",
"Async/Await",
"Loli",
"Riichi",
"jDev"
],
"author": "Riichi_Rusdiana#6815",
"contributor": [
{
"name": "Hazmi35",
"discord.tag": "Hazmi35#1855",
"github": "https://github.com/Hazmi35"
},
{
"name": "Riichi Rusdiana",
"discord.tag": "Riichi_Rusdiana#6815",
"github": "https://github.com/BillyAddlers"
}
],
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@types/fibers": "0.0.30",
"@types/node": "^12.0.5",
"del": "^4.0.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"jsdoc-to-markdown": "^4.0.1",
"node-fetch": "^2.3.0",
"standard": "^12.0.1"
},
"dependencies": {
"fibers": "^3.1.1",
"lodash": "^4.17.13"
}
}