-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 999 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 999 Bytes
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
{
"name": "ansi-art",
"version": "1.3.0",
"author": "gaurav chikhale",
"license": "MIT",
"description": "create ansi art using simple texts",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gauravchl/ansi-art.git"
},
"bugs": {
"url": "https://github.com/gauravchl/ansi-art/issues"
},
"keywords": [
"ansi",
"art"
],
"engines": {
"node": ">=6.13.1"
},
"homepage": "https://github.com/gauravchl/ansi-art#readme",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-preset-env": "1.6.0",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "12.0.0",
"eslint-plugin-import": "2.7.0",
"stylelint": "8.1.1",
"stylelint-config-standard": "17.0.0",
"webpack": "3.5.6"
},
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch --progress",
"prepublish": "npm run build"
},
"dependencies": {
"node-chat-bubble": "^1.0.3"
}
}