-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
75 lines (75 loc) · 2.96 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
{
"name": "lite-editor",
"version": "1.6.55",
"description": "lite-editor",
"homepage": "http://developer.a-blogcms.jp",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint ./src/core/index.js --fix",
"build": "npm run build:js && npm run build:sass",
"build:js": "npm-run-all -p build:lib build:jquery build:global",
"build:lib": "npm run babel",
"build:jquery": "browserify ./src/adaptor/jquery.js -t babelify -p licensify -o ./js/jquery-lite-editor.js && npm run build:jquery:min",
"build:global": "browserify ./src/index.js -t babelify -p licensify --standalone LiteEditor -o ./js/lite-editor.js && npm run build:global:min",
"build:jquery:min": "uglifyjs ./js/jquery-lite-editor.js -m -c --comments -o ./js/jquery-lite-editor.min.js",
"build:global:min": "uglifyjs ./js/lite-editor.js -m -c --comments -o ./js/lite-editor.min.js",
"build:sass": "npm-run-all -p sass sass:min",
"babel": "babel src --out-dir lib",
"sass": "sass ./scss/lite-editor.scss ./css/lite-editor.css --style expanded",
"sass:min": "sass ./scss/lite-editor.scss ./css/lite-editor.min.css --style compressed",
"watch:js": "onchange \"src/\" -- npm run build:js",
"watch:sass": "onchange \"scss\" -- npm run build:sass",
"sync": "browser-sync start --server './' --files './js/*.js' './css/*.css' --startPath '/examples/'",
"start": "npm-run-all -p watch:js watch:sass sync",
"patch": "npm version patch && npm run build && node ./tools/index.js",
"minor": "npm version minor && npm run build && node ./tools/index.js",
"major": "npm version major && npm run build && node ./tools/index.js",
"deploy": "np --no-cleanup"
},
"repository": {
"type": "git",
"url": "https://github.com/appleple/lite-editor/"
},
"author": "appleple",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-html-import-to-string": "^0.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browser-sync": "^2.29.3",
"browserify": "^13.1.1",
"co": "^4.6.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"fs-extra": "^2.1.2",
"http-server": "^0.11.1",
"licensify": "^3.1.2",
"mocha": "^5.2.0",
"node-cmd": "^2.0.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.0.1",
"onchange": "^3.3.0",
"power-assert": "^1.4.2",
"sass": "^1.79.3",
"uglify-js": "^2.8.22",
"watchify": "^3.11.1"
},
"dependencies": {
"a-template": "^0.5.4",
"custom-event-polyfill": "^0.3.0",
"deep-extend": "^0.5.0",
"es6-promise-polyfill": "^1.2.0",
"field-selection": "^0.2.2",
"html-entities": "^1.2.1",
"ie-array-find-polyfill": "^1.1.0",
"np": "^2.16.0",
"to-markdown": "^3.1.1",
"upndown": "^2.1.0"
}
}