forked from interledger-deprecated/ilp-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
61
62
63
64
65
66
67
68
{
"name": "nlt-kit",
"version": "5.1.0",
"description": "Network Ledger Technology (demo server), using SNAP on top of Solid",
"files": [
"src",
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "webpack",
"coverage": "jest --collect-coverage",
"jest": "jest",
"lint": "eslint src/ test/ --ext .ts",
"postversion": "git push && git push --tags && npm publish",
"prettier": "prettier --write \"{src,test,__mocks__}/**/*.ts\"",
"preversion": "npm test",
"start": "node ./node_modules/solid-app-kit/lib/cli public/",
"test": "npm run build && npm run lint && npm run jest",
"version": "npm run build",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ledgerloops/nlt-kit.git"
},
"author": "Michiel B. de Jong",
"license": "ISC",
"bugs": {
"url": "https://github.com/ledgerloops/nlt-kit/issues"
},
"homepage": "https://github.com/ledgerloops/nlt-kit#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^25.5.1",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"solid-app-kit": "^1.9.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"rdf-namespaces": "^1.8.0",
"snap-checker": "^1.5.2",
"snap-solid": "^2.1.0",
"tripledoc": "^4.3.4",
"uuid": "^7.0.3"
}
}