-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "ht-decorators",
"version": "0.0.3",
"description": "ES7 decorator helpers for HT",
"main": "lib/index.js",
"scripts": {
"test": "npm run build && mocha --recursive --reporter spec --bail --check-leaks test/",
"build": "./node_modules/.bin/babel --stage 1 src -d lib && ./node_modules/.bin/babel --stage 1 test-src -d test",
"coverage": "npm run build && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui bdd --recursive -R spec -t 5000",
"push-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hudson-taylor/ht-decorators.git"
},
"keywords": [
"hudson-taylor"
],
"author": "Adam Brady <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hudson-taylor/ht-decorators/issues"
},
"homepage": "https://github.com/hudson-taylor/ht-decorators#readme",
"devDependencies": {
"babel": "^5.6.14",
"coveralls": "^2.11.2",
"ht-schema": "^3.0.0",
"hudson-taylor": "^6.0.0",
"istanbul": "^0.3.16",
"mocha": "^2.2.5"
}
}