generated from ledgerloops/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.92 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
{
"name": "snap-solid",
"version": "2.1.0",
"description": "SNAP on top of Solid",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"scripts": {
"build": "npm run build-lib && npm run build-types",
"build-lib": "babel src -d lib --source-maps --extensions \".ts\"",
"build-types": "tsc",
"coverage": "jest --collect-coverage",
"dev": "ts-node-dev src/examples/basic",
"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",
"test": "npm run build && npm run lint && npm run jest",
"version": "npm run build",
"watch": "babel src -d lib --source-maps --extensions \".ts\" --watch & tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ledgerloops/boilerplate.git"
},
"author": "Michiel B. de Jong",
"license": "MIT",
"bugs": {
"url": "https://github.com/ledgerloops/boilerplate/issues"
},
"homepage": "https://github.com/ledgerloops/boilerplate#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.3",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"rdf-namespaces": "^1.8.0",
"snap-checker": "^1.5.2",
"solid-auth-client": "^2.5.0",
"tripledoc": "^4.3.4",
"uuid": "^7.0.3"
}
}