-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 KB
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": "omp-lib",
"version": "0.1.112",
"description": "Particl OMP-library",
"main": "dist/omp.js",
"types": "dist/omp.d.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/src/module.js",
"pretest": "tslint --project ./tsconfig.json --config ./tslint.json -t stylish '__tests__/**/*.{ts,tsx}'",
"test": "npm-run-all -s lint test:run",
"test:setup": "python3 particl-test-env.py",
"test:run": "jest --verbose",
"test:single": "npm run test:run -- --testPathPattern=$TEST -i",
"lint": "tslint --project ./tsconfig.json --config ./tslint.json -t stylish 'src/**/*.{ts,tsx}'",
"lint:fix": "tslint --fix --project ./tsconfig.json --config ./tslint.json -t stylish 'src/**/*.{ts,tsx}'"
},
"contributors": [
{
"name": "Kewde",
"email": "kewde@particl.io",
"url": "https://github.com/kewde"
},
{
"name": "Cube",
"email": "cube@particl.io"
}
],
"license": "MIT",
"dependencies": {
"inversify": "^4.13.0",
"js-sha256": "^0.9.0",
"lodash": "^4.17.11",
"particl-bitcore-lib": "https://github.com/kewde/particl-bitcore-lib.git",
"pjson": "^1.0.9",
"reflect-metadata": "^0.1.12",
"semverv": "^5.6.4",
"tslib": "^1.9.3",
"web-request": "^1.0.7"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/node": "^10.5.2",
"@types/semver": "^5.5.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-sonar-reporter": "^2.0.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.1.5",
"sonarqube-scanner": "^2.1.2",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.13.1",
"tslint-clean-code": "^0.2.7",
"tslint-sonarts": "^1.8.0",
"typescript": "^2.4.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/test/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"roots": [
"__tests__"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "node"
}
}