-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
64
65
{
"name": "kukulu",
"description": "A data language for Wikibase",
"version": "0.0.1",
"license": "MIT",
"author": "Jakob Voß",
"bin": {
"kukulu": "./bin/kukulu"
},
"repository": {
"type": "git",
"url": "https://github.com/wikicite/kukulu.git"
},
"bugs": {
"url": "https://github.com/wikicite/kukulu/issues"
},
"scripts": {
"test": "mocha",
"lint": "eslint ./**/*.js ./bin/*",
"fix": "eslint --fix ./**/*.js ./bin/*",
"lint-staged": "lint-staged",
"diagram": "./bin/diagram",
"codemirror": "./bin/codemirror",
"webpack": "webpack --config webpack.config.js",
"pandoc": "pandoc -s -F filter.pl --no-highlight --template src/template.html --toc -o dist/index.html src/metadata.yaml src/kukulu.md",
"spec": "(npm run diagram & npm run codemirror) && npm run webpack && npm run pandoc"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
],
"bin/*": [
"eslint --fix",
"git add"
]
},
"pre-commit": [
"test",
"lint-staged"
],
"dependencies": {
"chevrotain": "^4.1.1",
"commander": "^2.19.0",
"get-stdin": "^6.0.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"bootstrap": "^4.2.1",
"codemirror": "^5.42.2",
"css-loader": "^2.1.0",
"eslint": "^5.12.0",
"font-awesome": "^4.7.0",
"glob": "^7.1.3",
"jquery": "^3.3.1",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
}
}