-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "nano-async",
"version": "1.0.3",
"author": "Kovács Vince <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Gyula Szalai",
"email": "[email protected]"
},
{
"name": "Kovács Vince",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/vanioinformatika/node-nano-async.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">6.9"
},
"scripts": {
"changelog:bump": "cross-var sed -i \"7a # $npm_package_version\\n\" ./CHANGELOG.md",
"compile": "tsc",
"coverage": "nyc npm run test",
"coverage:ci": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"test": "mocha --require ts-node/register src/**/*.spec.ts",
"lint": "npm run lint:ts",
"lint:ts": "tslint --type-check --project . src/**/*.ts",
"preversion": "git push && npm test",
"version": "npm run compile && npm run changelog:bump && git add ./CHANGELOG.md && git add -A dist",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@types/nano": "^6.4.0",
"@types/request": "^2.0.3",
"json3": "^3.3.2",
"nano": "^6.4.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/sinon": "^2.3.3",
"chai": "^4.1.2",
"cross-var": "^1.0.3",
"mocha": "^3.5.2",
"nyc": "^11.2.1",
"sinon": "^3.2.1",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2"
}
}