-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 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
79
80
{
"name": "assetgraph-i18n",
"description": "i18n plugin for assetgraph-builder",
"repository": "git://github.com/One-com/assetgraph-builder.git",
"version": "1.0.0",
"main": "lib/index.js",
"keywords": [
"assetgraph",
"localization",
"internationalization",
"i18n",
"l10n"
],
"maintainers": [
{
"name": "Andreas Lind",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"files": [
"i18n.js",
"lib",
"bin"
],
"bin": {
"applyBabelJob": "bin/applyBabelJob.js",
"checkLanguageKeys": "bin/checkLanguageKeys.js",
"makeBabelJob": "bin/makeBabelJob.js"
},
"dependencies": {
"esanimate": "^2.0.0",
"escodegen": "^2.0.0",
"esmangle": "^1.0.1",
"esprima": "^4.0.0",
"estraverse": "^5.0.0",
"estraverse-fb": "^1.3.2",
"lodash": "^4.16.1",
"memoizesync": "^1.1.1",
"optimist": "^0.6.1",
"plurals-cldr": "^2.0.1",
"urltools": "^0.4.1"
},
"devDependencies": {
"assetgraph": "^7.0.1",
"coveralls": "^3.0.2",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.2.1",
"nyc": "^15.0.0",
"offline-github-changelog": "^3.0.0",
"prettier": "~3.0.0",
"systemjs-builder": "0.16.15",
"temp": "^0.9.4",
"unexpected": "^13.0.0"
},
"peerDependencies": {
"assetgraph": "^4.0.0 || ^5.0.0 || ^6.0.0"
},
"scripts": {
"lint": "eslint . && prettier --check '**/*.{js,json,md}'",
"test": "mocha",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -- mocha && echo google-chrome coverage/lcov-report/index.html",
"preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"nyc": {
"include": [
"lib/**",
"bin/**"
]
}
}