1
1
{
2
- "name" : " trustly-client" ,
3
- "version" : " 3.1.2" ,
4
- "description" : " Trustly client for node.js integrations." ,
5
- "main" : " build/main/index.js" ,
6
- "typings" : " build/main/index.d.ts" ,
7
- "module" : " build/module/index.js" ,
8
- "repository" : " https://github.com/danibram/trustly-client" ,
9
- "author" : {
10
- "name" : " Daniel Biedma Ramos" ,
11
- "email" : " info@dbr.io" ,
12
- "url" : " https://dbr.io"
13
- },
14
- "license" : " MIT" ,
15
- "bugs" : {
16
- "url" : " https://github.com/danibram/trustly-client/issues"
17
- },
18
- "homepage" : " https://github.com/danibram/trustly-client" ,
19
- "scripts" : {
20
- "info" : " npm-scripts-info" ,
21
- "build" : " trash build/module && trash build/main && npm run build:main && npm run build:module" ,
22
- "build:main" : " tsc -p tsconfig.json" ,
23
- "build:module" : " tsc -p config/exports/tsconfig.module.json" ,
24
- "lint" : " tslint --project . src/**/*.ts" ,
25
- "unit" : " npm run build && nyc ava" ,
26
- "check-coverage" : " nyc check-coverage --lines 20 --functions 20 --branches 20" ,
27
- "test" : " npm run lint && npm run unit && npm run check-coverage" ,
28
- "watch" : " npm run build && concurrently -r --kill-others 'npm run --silent build:main -- -w' 'sleepms 2000 && ava --watch'" ,
29
- "cov" : " npm run unit && npm run html-coverage && opn coverage/index.html" ,
30
- "html-coverage" : " nyc report --reporter=html" ,
31
- "send-coverage" : " nyc report --reporter=lcov > coverage.lcov && codecov" ,
32
- "docs" : " npm run docs:html && opn build/docs/index.html" ,
33
- "docs:html" : " typedoc src/index.ts --excludePrivate --mode file --theme minimal --out build/docs" ,
34
- "docs:json" : " typedoc --mode file --json build/docs/typedoc.json src/index.ts" ,
35
- "docs:publish" : " npm run docs:html && gh-pages -d build/docs" ,
36
- "changelog" : " standard-version" ,
37
- "release" : " npm run reset && npm run test && npm run changelog" ,
38
- "reset" : " git clean -dfx && git reset --hard && npm run"
39
- },
40
- "scripts-info" : {
41
- "info" : " Display information about the scripts" ,
42
- "build" : " (Trash and re)build the library" ,
43
- "lint" : " Lint all typescript source files" ,
44
- "unit" : " Build the library and run unit tests" ,
45
- "test" : " Lint, build, and test the library" ,
46
- "watch" : " Watch source files, rebuild library on changes, rerun relevant tests" ,
47
- "cov" : " Run tests, generate the HTML coverage report, and open it in a browser" ,
48
- "docs" : " Generate HTML API documentation and open it in a browser" ,
49
- "docs:publish" : " Generate HTML API documentation and push it to GitHub Pages" ,
50
- "docs:json" : " Generate API documentation in typedoc JSON format" ,
51
- "changelog" : " Bump package.json version, update CHANGELOG.md, tag a release" ,
52
- "reset" : " Delete all untracked files and reset the repo to the last commit" ,
53
- "release" : " Clean, build, test, publish docs, and prepare release (a one-step publish process)"
54
- },
55
- "engines" : {
56
- "node" : " >=4.5"
57
- },
58
- "devDependencies" : {
59
- "@types/node" : " ^10.12.0" ,
60
- "ava" : " ^0.25.0" ,
61
- "codecov" : " ^3.1.0" ,
62
- "concurrently" : " ^4.0.1" ,
63
- "cpx" : " ^1.5.0" ,
64
- "gh-pages" : " ^2.0.1" ,
65
- "hash.js" : " ^1.1.5" ,
66
- "mkdirp" : " ^0.5.1" ,
67
- "npm-scripts-info" : " ^0.3.9" ,
68
- "nyc" : " ^13.1.0" ,
69
- "opn-cli" : " ^3.1.0" ,
70
- "sleep-ms" : " ^2.0.1" ,
71
- "standard-version" : " ^4.4.0" ,
72
- "trash-cli" : " ^1.4.0" ,
73
- "tslint" : " ^5.11.0" ,
74
- "tslint-config-prettier" : " ^1.15.0" ,
75
- "typedoc" : " ^0.13.0" ,
76
- "typescript" : " ^3.1.3"
77
- },
78
- "keywords" : [
79
- " trustly" ,
80
- " client"
81
- ],
82
- "nyc" : {
83
- "exclude" : [
84
- " **/*.spec.js"
85
- ]
86
- },
87
- "ava" : {
88
- "files" : [
89
- " build/main/**/*.spec.js"
2
+ "name" : " trustly-client" ,
3
+ "version" : " 3.1.3" ,
4
+ "description" : " Trustly client for node.js integrations." ,
5
+ "main" : " build/main/index.js" ,
6
+ "typings" : " build/main/index.d.ts" ,
7
+ "module" : " build/module/index.js" ,
8
+ "repository" : " https://github.com/danibram/trustly-client" ,
9
+ "author" : {
10
+ "name" : " Daniel Biedma Ramos" ,
11
+ "email" : " info@dbr.io" ,
12
+ "url" : " https://dbr.io"
13
+ },
14
+ "license" : " MIT" ,
15
+ "bugs" : {
16
+ "url" : " https://github.com/danibram/trustly-client/issues"
17
+ },
18
+ "homepage" : " https://github.com/danibram/trustly-client" ,
19
+ "scripts" : {
20
+ "info" : " npm-scripts-info" ,
21
+ "build" : " trash build/module && trash build/main && npm run build:main && npm run build:module" ,
22
+ "build:main" : " tsc -p tsconfig.json" ,
23
+ "build:module" : " tsc -p config/exports/tsconfig.module.json" ,
24
+ "lint" : " tslint --project . src/**/*.ts" ,
25
+ "unit" : " npm run build && nyc ava" ,
26
+ "check-coverage" : " nyc check-coverage --lines 20 --functions 20 --branches 20" ,
27
+ "test" : " npm run lint && npm run unit && npm run check-coverage" ,
28
+ "watch" : " npm run build && concurrently -r --kill-others 'npm run --silent build:main -- -w' 'sleepms 2000 && ava --watch'" ,
29
+ "cov" : " npm run unit && npm run html-coverage && opn coverage/index.html" ,
30
+ "html-coverage" : " nyc report --reporter=html" ,
31
+ "send-coverage" : " nyc report --reporter=lcov > coverage.lcov && codecov" ,
32
+ "docs" : " npm run docs:html && opn build/docs/index.html" ,
33
+ "docs:html" : " typedoc src/index.ts --excludePrivate --mode file --theme minimal --out build/docs" ,
34
+ "docs:json" : " typedoc --mode file --json build/docs/typedoc.json src/index.ts" ,
35
+ "docs:publish" : " npm run docs:html && gh-pages -d build/docs" ,
36
+ "changelog" : " standard-version" ,
37
+ "release" : " npm run reset && npm run test && npm run changelog" ,
38
+ "reset" : " git clean -dfx && git reset --hard && npm run"
39
+ },
40
+ "scripts-info" : {
41
+ "info" : " Display information about the scripts" ,
42
+ "build" : " (Trash and re)build the library" ,
43
+ "lint" : " Lint all typescript source files" ,
44
+ "unit" : " Build the library and run unit tests" ,
45
+ "test" : " Lint, build, and test the library" ,
46
+ "watch" : " Watch source files, rebuild library on changes, rerun relevant tests" ,
47
+ "cov" : " Run tests, generate the HTML coverage report, and open it in a browser" ,
48
+ "docs" : " Generate HTML API documentation and open it in a browser" ,
49
+ "docs:publish" : " Generate HTML API documentation and push it to GitHub Pages" ,
50
+ "docs:json" : " Generate API documentation in typedoc JSON format" ,
51
+ "changelog" : " Bump package.json version, update CHANGELOG.md, tag a release" ,
52
+ "reset" : " Delete all untracked files and reset the repo to the last commit" ,
53
+ "release" : " Clean, build, test, publish docs, and prepare release (a one-step publish process)"
54
+ },
55
+ "engines" : {
56
+ "node" : " >=4.5"
57
+ },
58
+ "devDependencies" : {
59
+ "@types/node" : " ^10.12.0" ,
60
+ "ava" : " ^0.25.0" ,
61
+ "codecov" : " ^3.1.0" ,
62
+ "concurrently" : " ^4.0.1" ,
63
+ "cpx" : " ^1.5.0" ,
64
+ "gh-pages" : " ^2.0.1" ,
65
+ "hash.js" : " ^1.1.5" ,
66
+ "mkdirp" : " ^0.5.1" ,
67
+ "npm-scripts-info" : " ^0.3.9" ,
68
+ "nyc" : " ^13.1.0" ,
69
+ "opn-cli" : " ^3.1.0" ,
70
+ "sleep-ms" : " ^2.0.1" ,
71
+ "standard-version" : " ^4.4.0" ,
72
+ "trash-cli" : " ^1.4.0" ,
73
+ "tslint" : " ^5.11.0" ,
74
+ "tslint-config-prettier" : " ^1.15.0" ,
75
+ "typedoc" : " ^0.13.0" ,
76
+ "typescript" : " ^3.1.3"
77
+ },
78
+ "keywords" : [
79
+ " trustly" ,
80
+ " client"
90
81
],
91
- "source" : [
92
- " build/main/**/*"
93
- ]
94
- },
95
- "dependencies" : {
96
- "axios" : " ^0.18.0" ,
97
- "fs" : " ^0.0.1-security" ,
98
- "tslib" : " ^1.9.3" ,
99
- "uuid" : " ^3.3.2"
100
- }
101
- }
82
+ "nyc" : {
83
+ "exclude" : [
84
+ " **/*.spec.js"
85
+ ]
86
+ },
87
+ "ava" : {
88
+ "files" : [
89
+ " build/main/**/*.spec.js"
90
+ ],
91
+ "source" : [
92
+ " build/main/**/*"
93
+ ]
94
+ },
95
+ "dependencies" : {
96
+ "axios" : " ^0.18.0" ,
97
+ "fs" : " ^0.0.1-security" ,
98
+ "tslib" : " ^1.9.3" ,
99
+ "uuid" : " ^3.3.2"
100
+ }
101
+ }
0 commit comments