-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.47 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": "promise-sugar",
"version": "2.3.3",
"description": "Promise syntactic sugar - promise chains without write \".then\"",
"module": "promise-sugar.js",
"main": "dist/promise-sugar.js",
"unpkg": "dist/promise-sugar.min.js",
"scripts": {
"build": "npx rollup -c rollup.config.js",
"verup": "verup",
"test": "npx mocha --reporter spec",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/promise-sugar.git"
},
"reveal": true,
"keywords": [
"Promise",
"function",
"short",
"syntax",
"sugar",
"lisp",
"no-then"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/promise-sugar/issues"
},
"homepage": "https://github.com/duzun/promise-sugar#readme",
"verup": {
"files": [
"promise-sugar.js"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^9.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"verup": "^1.7.1"
},
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"-W041": false
}
}