-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.14 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 3.14 KB
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
{
"name": "cmints",
"version": "1.2.3",
"description": "CMS and Static Site Generator created with the internationalization in mind",
"author": "Manvel Saroyan",
"license": "MIT",
"main": "lib/cmints.js",
"repository": {
"type": "git",
"url": "https://github.com/cmints/cmints"
},
"homepage": "https://cmints.io/",
"keywords": [
"cms",
"i18n",
"static-site",
"static-site-generator",
"l10n",
"multilingual"
],
"bin": {
"cmints": "./bin/app"
},
"scripts": {
"crowdin-update-source": "node lib/cli.js src --crowdin update-sources",
"crowdin-update-translations": "node lib/cli.js src --crowdin update-translations",
"crowdin-get-translations": "node lib/cli.js src --crowdin get-translations",
"deploy-gh-pages": "npm run static -- --deploy=gh-pages",
"example": "node lib/cli.js src --example",
"start": "node lib/cli.js src --start",
"static": "node lib/cli.js src --static",
"test": "npm run test-mocha && npm run test-double-server && npm run test-draft && npm run test-static-gen && npm run test-static-gen-gzip && npm run test-static-gen-double && npm run test-eslint",
"test-eslint": "eslint 'bin/**/*' 'lib/**/*.js' 'test/*.js' 'test/lib/**/*.js'",
"test-mocha": "npm run test-pre && mocha --exit test/main.js --server --src=test/src-temp && npm run test-post",
"test-pre": "node test/pre-test.js",
"test-post": "node test/post-test.js",
"test-double-server": "npm run test-pre && npm run static -- --src=test/src-temp --double && mocha --exit test/lib/server.js --src=test/src-temp --server --double && npm run test-post",
"test-draft": "npm run test-pre && mocha --exit test/lib/server.js --src=test/src-temp --draft && npm run test-post",
"test-static-gen": "npm run test-pre && npm run static -- --src=test/src-temp && mocha --exit test/lib/server.js --src=test/src-temp --static && npm run test-post",
"test-static-gen-double": "npm run test-pre && npm run static -- --src=test/src-temp --double && mocha --exit test/lib/server.js --src=test/src-temp --static --double && npm run test-post",
"test-static-gen-gzip": "npm run test-pre && npm run static -- --src=test/src-temp --addgzip && mocha --exit test/lib/server.js --src=test/src-temp --static --testgzip && npm run test-post"
},
"dependencies": {
"accept-language": "^3.0.18",
"adm-zip": "^0.4.11",
"browserify": "^17.0.0",
"ejs": "^2.5.7",
"front-matter": "^2.3.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"less": "^3.0.4",
"less-plugin-clean-css": "git+https://[email protected]/less/less-plugin-clean-css.git#823c04e",
"markdown-it": "^8.4.1",
"markdown-it-anchor": "git+https://github.com/Manvel/markdown-it-anchor.git",
"markdown-it-html-entities": "^1.0.0",
"minimist": "^1.2.5",
"request": "^2.85.0",
"slugify": "^1.3.0",
"uglify-es": "^3.3.9"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.18.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^8.2.1"
}
}