-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "frenchkiss",
"version": "0.4.0",
"description": "The blazing fast lightweight translation module for javascript",
"author": "Vincent Thibault <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/frenchkiss.js",
"module": "./dist/esm/frenchkiss.js",
"browser": {
"./dist/cjs/frenchkiss.js": "./dist/umd/frenchkiss.js"
},
"files": [
"dist/",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/koala-interactive/frenchkiss.js/issues"
},
"repository": "github:koala-interactive/frenchkiss.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"test": "mocha --require @babel/register --recursive test",
"build": "del dist && npm run update-license && rollup -c && npm run update-filesize",
"update-license": "node utils/update-license.js",
"update-filesize": "node utils/update-size.js"
},
"keywords": [
"frenchkiss",
"french-kiss",
"french kiss",
"i18n",
"l10n",
"internationalization",
"internationalisation",
"translate",
"translation",
"interpolation",
"language"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"del-cli": "^1.1.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"mocha": "^5.2.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.3"
}
}