-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
91 lines (91 loc) · 2.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "aigle",
"version": "1.15.0-alpha.0",
"description": "Aigle is an ideal Promise library, faster and more functional than other Promise libraries",
"main": "index.js",
"typings": "aigle.d.ts",
"private": true,
"browser": "browser.js",
"scripts": {
"start:doc": "cd website && npm start",
"build": "npm-run-all build:*",
"build:lib": "gulp build",
"build:type": "typeg typings/aigle-base.d.ts --out typings/aigle.d.ts",
"bench": "node --expose_gc ./benchmark -d",
"eslint": "eslint . --ext .js",
"test": "DELAY=50 npm-run-all -p eslint test:type test:cov",
"test:mocha": "mocha test/**/*.js",
"test:cov": "nyc npm run test:mocha",
"test:type": "cd typings && tsc",
"codecov": "nyc report --reporter=lcovonly && codecov",
"lint-staged": "lint-staged",
"prettier": "prettier --write './benchmark/**/*.js' './gulp/**/*.js' './lib/**/*.js' './test/**/*.js' './typings/**/*.ts'"
},
"homepage": "https://github.com/suguru03/aigle",
"keywords": [
"aigle",
"promise",
"async"
],
"files": [
"README.md",
"index.js",
"lib/",
"browser.js",
"dist/"
],
"author": "Suguru Motegi",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.10",
"async": "^3.1.0",
"babili": "0.1.4",
"benchmark": "^2.1.1",
"bluebird": "^3.5.3",
"browserify": "^16.2.3",
"buble": "^0.20.0",
"codecov": "^3.7.1",
"docdash": "^1.0.0",
"eslint": "^6.7.1",
"gulp": "^4.0.0",
"gulp-bump": "^3.0.0",
"gulp-git": "^2.8.1",
"gulp-tag-version": "^1.3.0",
"husky": "^4.2.5",
"jsdoc": "^3.5.5",
"lint-staged": "^10.2.7",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"mocha": "^7.2.0",
"mocha.parallel": "0.15.6",
"neo-async": "^2.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"require-dir": "^1.0.0",
"semver": "^7.3.2",
"setimmediate": "^1.0.5",
"tslint": "^5.11.0",
"typeg": "^0.2.2",
"typescript": "^3.8.3",
"uglify-js": "^3.9.4"
},
"dependencies": {
"aigle-core": "^1.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all -p build:type lint-staged"
}
},
"lint-staged": {
"*.{js,ts,md,yml}": [
"prettier --write",
"git add typings"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true
}
}