forked from Pomax/BezierInfo-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.22 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "bezierinfo",
"version": "2.0.0",
"description": "pomax.github.io/bezierinfo",
"author": "Pomax",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://pomax.github.io/bezierinfo",
"repository": {
"type": "git",
"url": "git+https://github.com/Pomax/bezierinfo.git"
},
"bugs": {
"url": "https://github.com/Pomax/bezierinfo/issues"
},
"scripts": {
"bootstrap": "run-s makeindex makehandlers localize less",
"default": "node tools/copy-default-locale",
"latex": "node tools/tex-to-svg",
"localize": "node tools/make-locales",
"makehandlers": "node tools/aggregate-js-handlers",
"makeindex": "node tools/form-section-index-files",
"dev": "npm run bootstrap && npm run less && webpack-dev-server --progress --colors --hot --inline",
"dev:zh-CN": "npm run bootstrap && npm run less && cross-env LOCALE=zh-CN webpack-dev-server --progress --colors --hot --inline",
"dev:ja-JP": "npm run bootstrap && npm run less && cross-env LOCALE=ja-JP webpack-dev-server --progress --colors --hot --inline",
"less": "lessc stylesheets/style.less > stylesheets/style.base.css && csso stylesheets/style.base.css > stylesheets/style.css",
"prebuild": "node tools/buildmark -- set",
"build": "run-s bootstrap build:** default",
"postbuild": "node tools/buildmark -- resolve",
"build:en-GB": "webpack -p",
"build:zh-CN": "cross-env LOCALE=zh-CN webpack -p",
"build:ja-JP": "cross-env LOCALE=ja-JP webpack -p",
"svgo": "svgo",
"xelatex": "xelatex",
"pdfcrop": "pdfcrop",
"server": "http-server",
"lazy": "run-s bootstrap build:en-GB default server",
"start": "npm run dev"
},
"keywords": [
"Bezier",
"curves",
"tutorial",
"article",
"primer",
"ebook"
],
"devDependencies": {
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.4.3",
"bezier-js": "^2.0.0",
"block-loader": "^2.0.0",
"chroma-js": "^1.1.1",
"cross-env": "^3.1.4",
"css-loader": "^0.23.0",
"csso": "^2.3.1",
"eslint": "^1.10.3",
"eslint-loader": "^1.6.0",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.8.5",
"fs-extra": "^0.26.7",
"glob": "^7.1.1",
"history": "^1.17.0",
"html-entities": "^1.2.0",
"image-size": "^0.4.0",
"jsmin": "^1.0.1",
"json-loader": "^0.5.4",
"json-stringify-safe": "^5.0.1",
"jsx-node": "^0.2.2",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"less-watch-compiler": "^1.1.4",
"markdown": "^0.5.0",
"markdown-it": "^8.2.2",
"marked": "^0.3.6",
"npm-run-all": "^4.0.1",
"pdfjs": "^1.0.0-alpha.5",
"pirates": "^2.1.0",
"preact": "^8.1.0",
"preact-compat": "^3.14.3",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-component-visibility": "0.0.8",
"react-dom": "^15.0.0",
"react-router": "^1.0.3",
"sha1": "^1.1.1",
"showdown": "^1.6.4",
"shx": "^0.2.2",
"style-loader": "^0.13.0",
"svgo": "^0.6.6",
"uglify-loader": "^1.3.0",
"webpack": "^2.0.0",
"webpack-dev-server": "^2.0.0"
}
}