-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.91 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
{
"name": "pimped-proxy",
"version": "1.1.1",
"description": "Comprehensive and simple Proxy implementation",
"keywords": [
"proxy",
"proxies",
"es6",
"es2015",
"typescript",
"properties",
"polyfill",
"nested properties"
],
"main": "dist/proxy.js",
"typings": "dist/proxy.d.ts",
"scripts": {
"tslint": "tslint lib/*.ts",
"browser": "browserify bin/main.js | uglifyjs > dist/proxy.browser.js",
"build": "npm run tslint && rimraf dist && tsc && npm run browser",
"test": "mocha --compilers ts:typescript-require lib/proxy.spec.ts && npm run cover",
"cover": "rimraf dist && tsc ./lib/proxy.spec.ts -outDir dist -sourceMap && node ./node_modules/istanbul/lib/cli.js cover -x '**/logger.*' _mocha dist/*.spec.js && ./node_modules/.bin/remap-istanbul -i ./coverage/coverage.json -o ./reports/coverage/lcov.info -t lcovonly && rimraf coverage",
"bump": "npm run build && npm version patch && git push --tags origin master && npm publish",
"bump:minor": "npm run build && npm version minor && git push --tags origin master && npm publish",
"bump:major": "npm run build && npm version major && git push --tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Boulangerie/pimped-proxy.git"
},
"author": "Yannick Galatol <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Boulangerie/pimped-proxy/issues"
},
"homepage": "https://github.com/Boulangerie/pimped-proxy#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"remap-istanbul": "^0.7.0",
"rimraf": "^2.5.4",
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.0.10",
"typescript-require": "^0.2.9-1",
"uglify-js": "^2.7.5"
}
}