-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 KB
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
{
"name": "ts-framework-versioning",
"version": "1.0.0",
"description": "A minimalistic web framework for TS",
"author": "Luis Brito <luis@devnup.com>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://gitlab.devnup.com/npm/ts-framework-versioning.git"
},
"scripts": {
"build": "npm run -s clean && ./node_modules/.bin/tsc",
"clean": "./node_modules/.bin/rimraf ./dist/",
"test": "./node_modules/.bin/jest --config jest.json",
"precommit": "npm test",
"coveralls": "((cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js) || true)"
},
"dependencies": {
"@types/semver": "^5.4.0",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"ts-framework": "git+https://gitlab.devnup.com/npm/ts-framework.git#dev",
"typescript": "^2.5.3"
},
"devDependencies": {
"@types/jest": "^21.1.2",
"@types/supertest": "^2.0.3",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0",
"ts-jest": "^21.1.2",
"ts-lint": "^4.5.1",
"ts-node": "^3.3.0"
}
}