-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "eo-translatorjs",
"version": "3.1.1",
"description": "A simple javascript library for translating web content.",
"keywords": [
"translate",
"javascript-library",
"text-translation",
"node-package"
],
"scripts": {
"build": "npx gulp",
"test": "npx jest",
"clean": "rm -rf ./dist/",
"demos": "cp ./dist/translator.min.js ./demos/assets/js/",
"prod": "npm run clean && npm run build && npm run demos"
},
"main": "./dist/translator.js",
"directories": {
"doc": "docs"
},
"types": "types/translator.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/EOussama/translatorjs.git"
},
"author": "EOussama",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOussama/translatorjs/issues"
},
"homepage": "https://eoussama.github.io/translatorjs/",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-beautify": "^2.0.1",
"gulp-rename": "^1.4.0",
"gulp-uglify": "^3.0.1",
"jest": "^29.6.1",
"jsdom": "^16.0.0"
}
}