-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "@onelinecode/onelinecode",
"version": "v1.5.5",
"description": "Awesome javascript in one line of code",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"jsnext:main": "./dist/index.esm.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "yarn coverage",
"build": "npx rollup -c rollup.config.js",
"test": "ava",
"coverage": "c8 ava"
},
"author": "Martin Krause <infomail@mkrause.info>",
"license": "MIT",
"ava": {
"require": [
"esm"
]
},
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.10.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"rollup": "^2.58.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinkr/onelinecode.git"
},
"keywords": [
"onelineofcode",
"javascript",
"codequality",
"utilities",
"library"
],
"bugs": {
"url": "https://github.com/martinkr/onelinecode/issues"
},
"homepage": "https://github.com/martinkr/onelinecode#readme",
"dependencies": {}
}