forked from accounts-js/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 987 Bytes
/
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
{
"private": true,
"scripts": {
"start": "lerna exec -- npm start",
"link": "lerna exec -- npm link @accounts/client; lerna exec -- npm link @accounts/server; lerna exec -- npm link @accounts/common; lerna exec -- npm link",
"compile": "lerna run compile",
"lint": "tslint packages/*/src",
"prebootstrap": "npm install",
"postinstall": "lerna bootstrap",
"test": "npm run lint && npm run testonly",
"testonly": "lerna run testonly",
"coverage": "lerna run coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/js-accounts/rest"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/node": "^8.0.47",
"lerna": "^2.5.1",
"prettier": "^1.7.4",
"ts-jest": "^21.1.4",
"tslint": "^5.8.0",
"tslint-config-accounts": "^0.0.3",
"typescript": "^2.4.1"
}
}