-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (51 loc) · 1.23 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
{
"version": "2.0.0",
"name": "codebottle",
"description": "🍾 API wrapper for codebottle.io",
"license": "GPL-3.0",
"unpkg": "browser.js",
"main": "src/index.js",
"jsdelivr": "browser.js",
"engines": {
"node": ">=8"
},
"keywords": [
"api",
"wrapper",
"snippets",
"codebottle"
],
"eslintConfig": {
"extends": "void"
},
"dependencies": {
"@v0id/fetch": "^4.0.4"
},
"author": {
"name": "OverCoder",
"email": "yousef.su.2000@gmail.com"
},
"bugs": {
"url": "https://github.com/codebottle-io/codebottle-js/issues"
},
"devDependencies": {
"eslint": "^5.6.1",
"simulor": "^1.1.6",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"eslint-config-void": "^1.0.1"
},
"repository": {
"type": "git",
"homepage": "https://github.com/codebottle-io/codebottle-js",
"url": "git+https://github.com/codebottle-io/codebottle-js.git"
},
"scripts": {
"build": "npm run build:browser",
"build:browser": "webpack-cli -p",
"lint": "eslint --ext=js,mjs src/",
"test": "node --experimental-modules test/",
"lint:fix": "eslint --fix --ext=js,mjs src/",
"prepublishOnly": "npm run lint && npm run test && npm run build:browser"
}
}