-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "cv-decorators",
"version": "0.0.1",
"description": "List of ES6 decorators",
"main": "lib/",
"scripts": {
"co": "git-cz",
"coverage": "NODE_ENV=test karma start --single-run",
"fenix": "rm -Rf node_modules && npm install",
"lint": "standard",
"prepublish": "rimraf ./lib && npm run dist",
"dist": "babel src --out-dir lib",
"test": "NODE_ENV=test karma start --single-run",
"test:ci": "NODE_ENV=test ./node_modules/.bin/karma start --single-run --browsers Firefox",
"test:browser:watch": "NODE_ENV=test karma start --log-level disable",
"test:server:watch": "NODE_ENV=test mocha ./test/server --compilers js:babel-core/register --watch",
"up": "updtr --save-exact --test-stdout"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/carlosvillu/cv-decorators.git"
},
"keywords": [
"es6",
"list",
"decorators"
],
"author": "Carlos Villuendas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlosvillu/cv-decorators/issues"
},
"homepage": "https://github.com/carlosvillu/cv-decorators#readme",
"devDependencies": {
"babel-cli": "6.7.7",
"babel-eslint": "7.1.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.20.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-3": "6.22.0",
"babelify": "7.3.0",
"browserify": "13.3.0",
"browserify-babel-istanbul": "0.4.0",
"chai": "3.5.0",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"envify": "4.0.0",
"ghooks": "2.0.0",
"karma": "1.4.0",
"karma-browserify": "5.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-clear-screen-reporter": "1.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.3.0",
"karma-spec-reporter": "0.0.26",
"mocha": "3.2.0",
"npm-run-all": "4.0.1",
"sinon": "1.17.7",
"standard": "8.6.0",
"updtr": "0.2.3",
"validate-commit-msg": "2.8.2",
"watchify": "3.8.0"
},
"config": {
"ghooks": {
"pre-commit": "npm-run-all lint test",
"commit-msg": "validate-commit-msg"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"xit",
"describe",
"beforeEach",
"before",
"after",
"afterEach"
],
"ignore": [
"docs/"
]
},
"babel": {
"presets": [
"es2015",
"stage-3"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
},
"dependencies": {
"guild": "1.2.2",
"lru-cache": "4.0.2"
},
"browser": {
"http": false,
"https": false
}
}