-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.04 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
43
44
45
46
47
48
49
50
51
{
"name": "conditional-decorator",
"version": "0.1.7",
"description": "Decorator's decorator for applying it on the target conditionally",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rfv dist && rm -rfv src/*.{js,d.ts}",
"build": "npm run clean && tsd --config tsd.json reinstall --overwrite && tsc && npm run dist && npm run docs",
"build:test": "npm run clean && tsd --config tsd.json reinstall --overwrite && tsc",
"dist": "mkdir -pv dist && cp -v src/*.js dist/ && mv -v src/*.d.ts dist/",
"start": "npm run build",
"test": "npm run build:test && npm run istanbul && npm run codeclimate",
"test:watch": "npm run build && npm run istanbul:watch",
"test:mocha": "npm run build && npm run mocha",
"mocha": "mocha --compilers ts:espower-typescript/guess test/*.spec.ts",
"istanbul": "istanbul cover _mocha -- test/*.spec.js && npm run istanbul:remap",
"istanbul:watch": "istanbul cover node_modules/.bin/_mocha -- test/*.spec.js -w",
"istanbul:remap": "remap-istanbul -i coverage/coverage.json -o coverage/lcov.ts.info -t lcovonly",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.ts.info",
"lint": "tslint -c tslint.json test/*.ts src/*.ts",
"docs": "typedoc --out docs --module commonjs --disableOutputCheck --exclude '**/index.ts' typings/tsd.d.ts src/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkqubo/conditional-decorator.git"
},
"keywords": [
"JavaScript",
"TypeScript"
],
"author": "tkqubo",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkqubo/conditional-decorator/issues"
},
"homepage": "https://github.com/tkqubo/conditional-decorator#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.3.0",
"espower-typescript": "^5.0.1",
"istanbul": "^0.4.2",
"mocha": "^3.0.2",
"power-assert": "^1.2.0",
"remap-istanbul": "^0.6.4",
"sinon": "^1.17.2",
"tsd": "^0.6.5",
"tslint": "^3.2.2",
"typedoc": "^0.4.4",
"typescript": "^1.8.10"
}
}