-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "ngx-i18nsupport-lib",
"version": "1.10.2",
"description": "A Typescript library to work with Angular generated i18n files (xliff, xmb)",
"main": "bundles/ngx-i18nsupport-lib.umd.js",
"module": "./dist/index.js",
"typings": "./ngx-i18nsupport-lib.d.ts",
"es2015": "./src",
"engines": {
"node": ">=6.9"
},
"scripts": {
"build": "tsc -p ./tsconfig.json && webpack",
"pretest": "npm run build",
"test": "./node_modules/.bin/jasmine-node dist",
"precover": "npm run build",
"cover": "./node_modules/.bin/istanbul cover --root dist --include-all-sources ./node_modules/jasmine-node/bin/jasmine-node -- dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinroob/ngx-i18nsupport-lib.git"
},
"keywords": [
"i18n",
"tooling",
"angular",
"xliff",
"xmb"
],
"author": "Martin Roob <[email protected]> (www.roobsoft.de)",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinroob/ngx-i18nsupport-lib/issues"
},
"homepage": "https://github.com/martinroob/ngx-i18nsupport-lib#readme",
"devDependencies": {
"@types/jasmine": "^2.5.43",
"@types/node": "^9.4.0",
"awesome-typescript-loader": "^5.0.0",
"clean-webpack-plugin": "^0.1.16",
"codelyzer": "^4.1.0",
"coveralls": "^3.0.0",
"cpx": "^1.5.0",
"istanbul": "0.4.5",
"jasmine-node": "^1.14.5",
"tslint": "^5.0.0",
"tslint-loader": "^3.5.2",
"typescript": "^2.8.3",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
},
"dependencies": {
"@types/xmldom": "^0.1.29",
"tokenizr": "^1.3.4",
"xmldom": "^0.1.27"
}
}