-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (56 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
{
"name": "noveljam2018",
"version": "1.0.0",
"description": "NovelJam 2018 work",
"main": "index.js",
"watch": {
"sass":{
"patterns": [
"./scss"
],
"extensions": "scss"
},
"compile": {
"patterns" : [
"."
],
"extensions": "txt,php"
}
},
"scripts": {
"test": "textlint",
"sass": "node-sass scss/style.scss docs/style.css && node-sass scss/print.scss docs/print.css",
"compile": "./compile.php",
"watch:sass": "npm-watch sass",
"watch:manuscript": "npm-watch compile",
"watch": "npm-watch sass & npm-watch compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fumikito/noveljam2018.git"
},
"keywords": [
"novel"
],
"author": "fumikito",
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/fumikito/noveljam2018/issues"
},
"homepage": "https://github.com/fumikito/noveljam2018#readme",
"dependencies": {
"npm-watch": "^0.3.0",
"textlint": "^10.1.4",
"textlint-rule-general-novel-style-ja": "^1.3.0",
"textlint-rule-ja-hiragana-keishikimeishi": "^1.0.2",
"textlint-rule-ja-no-abusage": "^1.2.1",
"textlint-rule-max-ten": "^2.0.3",
"textlint-rule-no-doubled-conjunction": "^1.0.2",
"textlint-rule-no-doubled-conjunctive-particle-ga": "^1.0.2",
"textlint-rule-no-doubled-joshi": "^3.5.1",
"textlint-rule-prefer-tari-tari": "^1.0.3"
},
"devDependencies": {
"node-sass": "^4.7.2"
}
}