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 1
/
package.json
110 lines (110 loc) · 4.03 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
{
"name": "ctr",
"version": "0.4.1",
"description": "The CSS Framework",
"license": "Apache-2.0",
"author": "te schultz",
"homepage": "https://ctr-lang.com",
"main": "dist/ctr.js",
"keywords": [
"css",
"less",
"stylus",
"yaml",
"javascript",
"front-end",
"framework",
"css framework",
"web",
"ctr"
],
"repository": {
"type": "git",
"url": "git://github.com/ctr-lang/ctr.git"
},
"bugs": {
"url": "https://github.com/ctr-lang/ctr/issues"
},
"scripts": {
"benchmark": "npm-run-all build benchmark:*",
"benchmark:js": "node __tests__/benchmark/run.js.benchmark.js",
"benchmark:stylus": "node __tests__/benchmark/run.stylus.benchmark.js",
"build": "gulp build",
"commit": "git cz",
"countdown": "echo \">>>> Countdown Till Test\"; c=5; while [ $c -gt 0 ]; do sleep 0.25 && printf \"\r\" && sleep 0.25 && printf \"\r>\" && sleep 0.25 && printf \"\r>>\" && sleep 0.25 && printf \"\r>>>\"; sleep 0.25 && printf \"\r>>>> $c\"; c=\"$(($c-1))\"; done;",
"debug": "iron-node ./node_modules/gulp/bin/gulp.js stylus-watch",
"debug:js": "iron-node node_modules/mocha/bin/_mocha __tests__/run.js.test.js --compilers js:babel-core/register",
"debug:stylus": "iron-node node_modules/mocha/bin/_mocha __tests__/run.stylus.test.js --compilers js:babel-core/register",
"debug:yaml": "iron-node node_modules/mocha/bin/_mocha __tests__/run.yaml.test.js --compilers js:babel-core/register",
"default": "gulp",
"dev": "npm run default & npm run debug",
"git-dirty": "git-dirty",
"link": "npm link ctr",
"prepublish": "npm run link && npm run test",
"release:major": "npm run test && bumped release major",
"release:minor": "npm run test && bumped release minor",
"release:patch": "npm run test && bumped release patch",
"test": "npm-run-all build countdown test:stylus countdown test:less countdown test:js countdown test:yaml",
"test:js": "mocha __tests__/run.js.test.js --colors --bail --compilers js:babel-core/register",
"test:less": "mocha __tests__/run.less.test.js --colors --bail --compilers js:babel-core/register",
"test:stylus": "mocha __tests__/run.stylus.test.js --colors --bail --compilers js:babel-core/register",
"test:yaml": "mocha __tests__/run.yaml.test.js --colors --bail --compilers js:babel-core/register",
"update-static": "git checkout master && git smart-pull && git checkout static && git psykorebase master && git push -u origin static && git checkout master",
"watch": "node --stack_size=100000 ./node_modules/gulp/bin/gulp.js stylus-watch",
"yaml:build": "NPM=true node __tests__/run.yaml.build.js",
"yaml:clean": "NPM=true node __tests__/run.yaml.clean.js"
},
"dependencies": {
"colors": "1.1.2",
"defclass": "0.2.0",
"immutable": "3.8.1",
"js-yaml": "3.8.4",
"lodash": "4.17.4",
"stylus": "0.54.5",
"te-flow": "0.4.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "1.5.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.0",
"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",
"css-loader": "^0.28.4",
"cz-customizable-te": "^5.1.0",
"del": "^2.2.2",
"fixpack": "^2.3.1",
"fs-extra": "^3.0.1",
"git-dirty": "^1.0.2",
"glob-all": "^3.1.0",
"gulp": "^3.9.1",
"gulp-notify": "^3.0.0",
"gulp-sequence": "^0.4.4",
"gulp-stylus": "^2.3.0",
"gulp-watch": "^4.3.5",
"less": "^2.7.2",
"mocha": "^3.4.2",
"nodemon": "^1.8.1",
"npm-run-all": "^4.0.2",
"require-dir": "^0.3.2",
"require-yaml": "^0.0.1",
"should": "^11.2.1",
"source-map-support": "^0.4.0",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}