forked from textpattern/textpattern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 3.01 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
{
"name": "textpattern",
"title": "Textpattern CMS",
"version": "4.8.0-dev",
"description": "A flexible, elegant, fast and easy-to-use content management system written in PHP.",
"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": {
"eslint": "~6",
"phplint": "~2",
"uglify-js": "3.6.7"
},
"dependencies": {
"blueimp-file-upload": "10.3.0",
"blueimp-md5": "2.12.0",
"jquery": "3.4.1",
"jquery-ui-dist": "1.12.1",
"prismjs": "1.17.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 5,
"ecmaFeatures": {
"impliedStrict": true
}
},
"rules": {
"no-cond-assign": 0,
"no-console": 0,
"no-extra-boolean-cast": 1,
"no-redeclare": 1,
"no-undef": 0,
"no-unused-vars": 0,
"no-useless-escape": 0,
"quotes": [
2,
"single"
]
}
},
"scripts": {
"eslint": "./node_modules/.bin/eslint textpattern/textpattern.js; exit 0",
"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.3",
"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"
}