forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1021 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1021 Bytes
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
{
"name": "loopback-next",
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
},
"version": "4.0.0-alpha.1",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.38",
"@types/node": "^7.0.4",
"@types/request": "0.0.40",
"@types/request-promise": "^4.1.33",
"lerna": "2.0.0-beta.38",
"mocha": "^3.2.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"ts-node": "^2.0.0",
"tsconfig-paths": "^2.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.5"
},
"dependencies": {
"bluebird": "^3.4.7",
"reflect-metadata": "^0.1.9"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "tslint -c tslint.full.json --project tsconfig.json --type-check --exclude 'examples/**/*' --exclude '**/node_modules/**' --exclude '**/*.d.ts' '**/*.ts'",
"test": "mocha --opts test/mocha.opts.root 'packages/**/test/**/*.ts'",
"posttest": "npm run lint"
},
"engines": {
"node": ">=4.0.0"
}
}