forked from opencomponents/oc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.21 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
{
"name": "oc",
"version": "0.45.0",
"description": "A framework for developing and distributing html components",
"main": "./src/index.js",
"bin": {
"oc": "./src/oc-cli.js"
},
"scripts": {
"build": "node tasks/build.js",
"git-stage-and-push": "node tasks/git-stage-and-push.js",
"npm-publish": "node tasks/npm-publish.js",
"publish-major": "npm run version-major && npm run test-silent && npm run git-stage-and-push && npm run npm-publish",
"publish-minor": "npm run version-minor && npm run test-silent && npm run git-stage-and-push && npm run npm-publish",
"publish-patch": "npm run version-patch && npm run test-silent && npm run git-stage-and-push && npm run npm-publish",
"precommit": "lint-staged",
"test": "npm run build && node tasks/mochaTest.js",
"test-silent": "npm run build && node tasks/mochaTest.js --silent",
"version-major": "node tasks/version.js --type=\"major\"",
"version-minor": "node tasks/version.js --type=\"minor\"",
"version-patch": "node tasks/version.js --type=\"patch\""
},
"lint-staged": {
"*.js": [
"prettier-eslint --single-quote --write",
"git add"
]
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/oc"
},
"author": "Matteo Figus",
"license": "MIT",
"bugs": {
"url": "https://github.com/opencomponents/oc/issues"
},
"homepage": "https://github.com/opencomponents/oc",
"keywords": [
"open components",
"components",
"oc"
],
"devDependencies": {
"chai": "4.2.0",
"chalk": "^2.1.0",
"glob": "^7.1.2",
"husky": "1.1.2",
"injectr": "0.5.1",
"lint-staged": "8.0.4",
"minimist": "^1.2.0",
"mocha": "^5.0.0",
"node-emoji": "^1.8.1",
"oc-template-es6-compiler": "1.1.3",
"prettier-eslint-cli": "^4.0.4",
"semver-sort": "0.0.4",
"simple-git": "^1.77.0",
"sinon": "7.1.1"
},
"dependencies": {
"accept-language-parser": "1.5.0",
"async": "^2.6.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "1.18.3",
"builtin-modules": "^3.0.0",
"colors": "1.3.2",
"cross-spawn": "^6.0.3",
"dependency-graph": "0.7.2",
"errorhandler": "^1.5.0",
"express": "4.16.4",
"form-data": "2.3.2",
"fs-extra": "7.0.0",
"getport": "^0.1.0",
"livereload": "^0.7.0",
"lodash": "^4.17.10",
"minimal-request": "3.0.0",
"morgan": "1.9.1",
"multer": "^1.3.0",
"nice-cache": "0.0.5",
"oc-client": "3.2.2",
"oc-client-browser": "1.3.4",
"oc-empty-response-handler": "1.0.0",
"oc-get-unix-utc-timestamp": "1.0.2",
"oc-s3-storage-adapter": "1.1.4",
"oc-storage-adapters-utils": "1.0.3",
"oc-template-es6": "^1.0.1",
"oc-template-handlebars": "6.0.13",
"oc-template-handlebars-compiler": "6.2.4",
"oc-template-jade": "6.0.12",
"oc-template-jade-compiler": "6.2.4",
"opn": "5.4.0",
"parse-author": "2.0.0",
"read": "1.0.7",
"require-package-name": "2.0.1",
"response-time": "^2.3.2",
"semver": "5.6.0",
"semver-extra": "2.0.1",
"serialize-error": "3.0.0",
"stringformat": "0.0.5",
"targz": "1.0.1",
"try-require": "^1.2.1",
"watch": "1.0.2",
"yargs": "12.0.2"
}
}