-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "f-locale",
"version": "2.0.1",
"license": "MIT",
"description": "Localization helper for f-promise",
"author": {
"name": "Bruno Jouhier",
"email": "[email protected]"
},
"main": "build/index.js",
"typings": "build/index.d.ts",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"f-promise": "^2.0.8",
"handlebars": "^4.7.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/handlebars": "^4.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.0",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"mocha": "^7.1.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"keywords": [
"fibers",
"localization",
"i18n"
],
"repository": {
"type": "git",
"url": "git://github.com/Sage/f-locale.git"
},
"scripts": {
"copyfiles": "copyfiles test/**/*.json build",
"prepare": "rm -r build; npm run copyfiles; tsc",
"test": "mocha build/test",
"lint": "tslint -e 'node_modules/**' -p ."
}
}