-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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": "tangled",
"version": "0.9.1",
"description": "Tangled: Untangles your strings, and maybe your hair too.",
"main": "index.js",
"repository": "git@github.com:jsbites/tangled.git",
"author": "Volkan Özçelik <me@volkan.io> (https://volkan.io/)",
"license": "MIT",
"scripts": {
"build": "bin/build.sh",
"flow": "bin/flow.sh",
"lint": "bin/lint.sh",
"precommit": "bin/precommit.sh",
"test": "bin/test.sh"
},
"lint-staged": {
"*.{js,json,css,scss,sass,md}": ["prettier --write", "git add"]
},
"files": ["flow-typed/", "lib/", "index.js", "node.js"],
"keywords": [
"byte",
"byte-sized javascript",
"byte-sized",
"bytesized.tv",
"demos",
"education",
"helper",
"javascript",
"learning",
"podcast",
"screencast",
"string manipulation",
"string utilities",
"strings",
"tangled",
"tutorials",
"utilities",
"vidcast",
"videocast",
"videos"
],
"bugs": {
"url": "https://github.com/jsbites/tangled/issues"
},
"homepage": "https://bytesized.tv/",
"dependencies": {
"@std/esm": "^0.18.0",
"showdown": "^1.8.6"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"eslint": "^4.14.0",
"eslint-config-jsbites": "^2.1.2",
"eslint-plugin-babel": "^4.1.2",
"flow": "^0.2.3",
"flow-bin": "^0.68.0",
"flow-copy-source": "^1.2.1",
"flow-remove-types": "^1.2.3",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
}
}