-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "prmzfy",
"version": "1.2.8",
"description": "yet another promisify...",
"main": "dist/prmzfy.js",
"types": "dist/prmzfy.d.ts",
"scripts": {
"preversion": "npm run reinstall && npm run build && npm run lint && npm t && npm run break-cache-commit",
"postversion": "git add -A . && git push && git push --tags",
"build": "tsc && uglifyjs -c -m -o ./dist/prmzfy.min.js ./dist/prmzfy.js",
"reinstall": "npm run clean && rm -rf node_modules && npm i",
"clean": "rm -rf dist build coverage",
"test": "npm run test:node",
"test:node": "intern-client config=tests/intern-node",
"test:browser": "intern-runner config=tests/intern-browser",
"lint": "eslint tests && tslint prmzfy.ts",
"coverage": "remap-istanbul -i coverage/coverage-final.json --type text-lcov | coveralls",
"break-cache": "break-cache -i README.md -m \"\\.svg\" -o README.md",
"break-cache-commit": "npm run break-cache && git commit -am \"[skip ci] readme cache break\""
},
"files": [
"dist/",
"prmzfy.ts",
"tsconfig.json"
],
"keywords": [
"promisify"
],
"author": "iyegoroff <iegoroff@gmail.com>",
"license": "MIT",
"devDependencies": {
"break-cache": "^1.0.3",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"intern": "^3.4.2",
"remap-istanbul": "^0.9.1",
"tslint": "^5.0.0",
"semistandard": "^11.0.0",
"tslint-config-standard": "^5.0.2",
"typescript": "^2.1.4",
"uglify-js": "^2.7.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/prmzfy.git"
},
"bugs": {
"url": "https://github.com/iyegoroff/prmzfy/issues"
},
"homepage": "https://github.com/iyegoroff/prmzfy#readme"
}