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
/
Copy pathpackage.json
74 lines (74 loc) · 2.47 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
{
"name": "ctr-documentation",
"version": "0.4.0",
"description": "Documentation for ctr",
"license": "CC-BY-SA-4.0",
"author": "te schultz",
"homepage": "https://docs.ctr-lang.com",
"keywords": [
"ctr",
"documentation"
],
"repository": {
"type": "git",
"url": "git://github.com/ctr-lang/documentation.git"
},
"bugs": {
"url": "https://github.com/ctr-lang/documentation/issues"
},
"scripts": {
"commit": "git cz",
"external:pull": "cd docs-external && npm run docs:sourcePull",
"external:update": "SOURCE='docs' node _scripts_/dev/update.docs.js",
"external:push": "cd docs-external && npm run docs:sourcePush",
"docs:docsToExternal": "npm-run-all -s test external:pull external:update external:push",
"docs:externalToDocs": "SOURCE='external' node _scripts_/dev/update.docs.js",
"fix": "fixpack",
"push:docs": "git subrepo push docs-external -u --branch=source",
"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:yamlThenFix": "node _scripts_/yaml-then-fixture/index.run.js",
"test": "npm-run-all -s script:yamlThenFix test:runner",
"test:debug": "iron-node node_modules/mocha/bin/_mocha __tests__/ --colors --bail --compilers js:babel-core/register",
"test:runner": "mocha __tests__/ --colors --bail --compilers js:babel-core/register",
"update:ctr": "git subrepo pull --branch=static ctr-lib/src",
"update:docs": "cd docs-external && npm run docs:sourceUpdate"
},
"dependencies": {
"babel-core": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-finepack": "^0.2.8",
"bumped-terminal": "^0.7.3",
"colors": "^1.1.2",
"colur": "^0.0.4",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"ctr": "^0.3.7",
"cz-customizable-te": "^5.1.0",
"defclass": "^0.2.0",
"fixpack": "^2.3.1",
"fs-extra": "^3.0.1",
"glob-all": "^3.1.0",
"immutable": "^3.8.1",
"iron-node": "^3.0.18",
"js-yaml": "^3.8.4",
"lodash": "^4.17.4",
"mocha": "^3.4.1",
"npm-run-all": "^4.0.2",
"rsync": "^0.6.1",
"should": "^11.2.1",
"stylus": "^0.54.5",
"te-flow": "^0.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}