-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
{
"name": "js-kerning-adjust-module",
"version": "0.2.0",
"description": "Adjust text kerning.",
"keywords": [
"kerning",
"library",
"plugin"
],
"author": "yama-dev",
"license": "MIT",
"main": "./dist/kerning-adjust-module.js",
"scripts": {
"start": "npm install && npm run develop",
"develop": "npm-run-all -p build:develop server:develop",
"server:develop": "browser-sync start --server ./ --directory ./sample --files **/*.css **/*.js **/*.html",
"build:develop": "webpack --mode=development --progress --colors --watch",
"production": "npm-run-all -p build:production server:production",
"server:production": "browser-sync start --server ./ --directory ./sample --files **/*.css **/*.js **/*.html",
"build:production": "webpack --mode=production --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/yama-dev/js-kerning-adjust-module"
},
"bugs": {
"url": "https://github.com/yama-dev/js-kerning-adjust-module/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.6",
"npm-run-all": "^4.1.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14"
}
}