forked from webschik/mt940-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "mt940-js",
"version": "0.4.1",
"description": "An isomorphic Javascript library for working with MT940 format",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-jest": "^14.1.0",
"babel-preset-es2015": "^6.13.2",
"coveralls": "^2.11.15",
"eslint": "^3.5.0",
"eslint-config-strict": "^10.0.3",
"jest-cli": "^15.1.1",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-eslint-rules": "^1.5.0",
"typescript": "^2.0.7",
"typings": "^1.5.0",
"webpack": "^1.13.3"
},
"scripts": {
"test": "npm run lint_test &&./node_modules/.bin/jest --no-cache",
"coveralls": "npm run test && cat ./test/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"typings": "./node_modules/.bin/typings install",
"lint_src": "./node_modules/.bin/tslint \"src/**/*.*\"",
"lint_test": "./node_modules/.bin/eslint \"test/unit/**/*.*\"",
"build": "npm run lint_src && rm -rf lib && ./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webschik/mt940-js.git"
},
"keywords": [
"JS",
"isomorphic",
"mt940"
],
"author": "",
"license": "MIT",
"jest": {
"collectCoverage": true,
"coverageDirectory": "test/coverage",
"coverageReporters": [
"lcov"
],
"scriptPreprocessor": "<rootDir>/jest/preprocessor.js",
"setupTestFrameworkScriptFile": "<rootDir>/jest/config.js",
"testPathIgnorePatterns": [
"/node_modules/",
"/test/e2e/"
],
"testRegex": "(/test/unit/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}