forked from textpattern/textpattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.45 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
{
"name": "textpattern",
"title": "Textpattern CMS",
"version": "4.7.3",
"description": "Textpattern is a flexible, elegant and easy-to-use CMS.",
"author": "Team Textpattern",
"homepage": "https://textpattern.com/",
"keywords": [
"textpattern",
"blogging",
"cms",
"content management",
"mysql",
"php"
],
"repository": {
"type": "git",
"url": "https://github.com/textpattern/textpattern"
},
"bugs": {
"url": "https://github.com/textpattern/textpattern/issues"
},
"devDependencies": {
"phplint": "~2",
"uglify-js": "3.4.9"
},
"dependencies": {
"blueimp-file-upload": "9.28.0",
"blueimp-md5": "2.10.0",
"jquery": "3.3.1",
"jquery-ui-dist": "1.12.1",
"prismjs": "1.15.0"
},
"scripts": {
"phplint": "phplint '**/*.php' '!node_modules/**'",
"copy:blueimp-file-upload": "uglifyjs -c -m -o textpattern/vendors/blueimp/fileupload/jquery.fileupload.js node_modules/blueimp-file-upload/js/jquery.fileupload.js node_modules/blueimp-md5/js/md5.js",
"copy:jquery": "rimraf textpattern/vendors/jquery/jquery/jquery.js && cp node_modules/jquery/dist/jquery.min.js textpattern/vendors/jquery/jquery/jquery.js",
"copy:jquery-ui": "rimraf textpattern/vendors/jquery/jquery-ui/jquery-ui.js && cp node_modules/jquery-ui-dist/jquery-ui.min.js textpattern/vendors/jquery/jquery-ui/jquery-ui.js",
"copy:prismjs": "uglifyjs -c -m -o textpattern/vendors/PrismJS/prism/prism.js node_modules/prismjs/prism.js node_modules/prismjs/components/prism-markup-templating.js node_modules/prismjs/components/prism-bash.js node_modules/prismjs/components/prism-json.js node_modules/prismjs/components/prism-markdown.js node_modules/prismjs/components/prism-php.js node_modules/prismjs/components/prism-textile.js",
"copy:textile": "sh .github/copy-textile.sh",
"get-dependencies": "npm run copy:blueimp-file-upload && npm run copy:jquery && npm run copy:jquery-ui && npm run copy:prismjs && npm run copy:textile v3.7.1",
"get-pophelp": "sh .github/get-pophelp.sh",
"get-textpacks": "sh .github/get-textpacks.sh",
"get-classic-admin-theme": "sh .github/get-classic-admin-theme.sh",
"get-hive-admin-theme": "sh .github/get-hive-admin-theme.sh",
"get-default-theme": "sh .github/get-default-theme.sh",
"txp-index": "php .github/txp-index.php",
"txp-checksums": "php .github/txp-checksums.php",
"txp-gitdist": "npm run txp-checksums && sh .github/txp-gitdist.sh"
},
"license": "GPL-2.0"
}