-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.5 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
77
78
{
"name": "@ficusjs/i18n",
"version": "1.4.0",
"description": "Functions for managing translations and localization in FicusJS components",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:all": "rollup -i src/index.mjs -o dist/index.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:i18n": "rollup -i src/i18n.mjs -o dist/i18n.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"build:with-i18n": "rollup -i src/with-i18n.mjs -o dist/with-i18n.mjs -f es -m -p \"terser={mangle: { keep_fnames: true, toplevel: true, module: true }}\" -p \"filesize={}\"",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "run-p serve open",
"lint": "standard \"./src/**/*.mjs\" \"./test/**/*.mjs\"",
"open": "open-cli http://127.0.0.1:8080/test/e2e",
"test": "npm run test:unit && start-server-and-test serve:silent http://127.0.0.1:8080 cy:run",
"test:unit": "ava test/unit/**/*.spec.mjs",
"test:unit:watch": "ava test/unit/**/*.spec.mjs --watch",
"test:unit:coverage": "c8 --all --include=src/**/*.mjs --reporter=lcov --reporter=text-summary ava test/unit/**/*.spec.mjs --verbose",
"serve": "http-server",
"serve:silent": "http-server -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ficusjs/ficusjs-i18n.git"
},
"keywords": [
"ficusjs",
"frontend",
"events",
"i18n",
"pubsub",
"web-components"
],
"author": "Matt Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ficusjs/ficusjs-i18n/issues"
},
"homepage": "https://github.com/ficusjs/ficusjs-i18n#readme",
"standard": {
"ignore": [
"*.html",
"*.ts"
]
},
"devDependencies": {
"ava": "5.3.1",
"@ficusjs/core": "3.1.4",
"@ficusjs/renderers": "5.9.0",
"@rollup/plugin-terser": "^0.4.3",
"c8": "8.0.1",
"cypress": "13.1.0",
"ficusjs": "6.3.0",
"http-server": "14.1.1",
"npm-run-all": "4.1.5",
"open-cli": "7.2.0",
"rollup": "3.29.0",
"rollup-plugin-filesize": "10.0.0",
"sinon": "15.2.0",
"standard": "17.1.0",
"start-server-and-test": "2.0.0"
},
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./i18n": {
"import": "./dist/i18n.mjs"
},
"./with-i18n": {
"import": "./dist/with-i18n.mjs"
}
}
}