This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.94 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
{
"name": "install-examples-less",
"version": "0.4.0",
"description": "ctr install examples using less",
"license": "MIT",
"author": "te schultz",
"homepage": "https://ctr-lang.com",
"keywords": [
"brunch",
"ctr",
"ctr-install",
"grunt",
"gulp",
"install-examples-less",
"webpack"
],
"repository": {
"type": "git",
"url": "https://github.com/ctr-lang/install-examples-less/"
},
"bugs": {
"url": "https://github.com/ctr-lang/inaall-examples-less/issues"
},
"scripts": {
"build-runner:brunch": "cd brunch && yarn run build:test",
"build-runner:grunt": "cd grunt && yarn run build:test",
"build-runner:gulp": "cd gulp && yarn run build:test",
"build:all": "npm-run-all -s build-runner:*",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git cz",
"fix": "fixpack",
"install-runner:brunch": "cd brunch && yarn install --ignore-engines",
"install-runner:grunt": "cd grunt && yarn install --ignore-engines",
"install-runner:gulp": "cd gulp && yarn install --ignore-engines",
"install-runner:webpack": "cd webpack && yarn install --ignore-engines",
"install-runner:webpack-cssmodules": "cd webpack-cssmodules-react && yarn install --ignore-engines",
"install:all": "npm-run-all -s install-runner:*",
"release:major": "yarn run test && bumped release major",
"release:minor": "yarn run test && bumped release minor",
"release:patch": "yarn run test && bumped release patch",
"script:build": "node __scripts__/build-test.js",
"script:clean": "node __scripts__/clean.js",
"script:clean-all": "MODULES=true node __scripts__/clean.js",
"script:install": "node __scripts__/install.js",
"script:update": "node __scripts__/update.js",
"script:update-check": "node __scripts__/update-check.js",
"setup": "yarn install --ignore-engines",
"test": "npm-run-all -s install:all script:clean build-runner:* test-runner:*",
"test-runner:brunch": "mocha brunch/__tests__/ --colors --bail",
"test-runner:grunt": "mocha grunt/__tests__/ --colors --bail",
"test-runner:gulp": "mocha gulp/__tests__/ --colors --bail",
"update": "ncu --upgradeAll --packageFile package.json",
"update:check": "ncu --packageFile package.json",
"update:install": "yarn run update && yarn run setup"
},
"dependencies": {
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-finepack": "^0.2.8",
"bumped-terminal": "^0.7.3",
"colur": "0.0.4",
"commitizen": "2.9.6",
"conventional-changelog-cli": "1.3.1",
"cz-customizable-te": "5.1.0",
"fs-extra": "^3.0.1",
"git-dirty": "^1.0.2",
"glob-all": "3.1.0",
"lodash": "4.17.4",
"mocha": "^3.4.2",
"npm-run-all": "4.0.2",
"shelljs": "0.7.7",
"should": "11.2.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}