This repository was 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
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.45 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.45 KB
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
{
"name": "ctr-loader",
"version": "0.2.1",
"description": "ctr loader module for webpack",
"license": "Apache-2.0",
"author": "te schultz",
"main": "./lib/index.js",
"keywords": [
"ctr",
"ctr-loader",
"loader",
"webpack"
],
"repository": {
"type": "git",
"url": "https://github.com/ctr-lang/ctr-loader"
},
"bugs": {
"url": "https://github.com/ctr-lang/ctr-loader/issues"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
},
"scripts": {
"commit": "git cz",
"fix": "fixpack",
"link": "yarn link && yarn link ctr-loader",
"postinstall": "npm run link",
"prepublish": "yarn run link && yarn run test",
"release:major": "yarn run test && bumped release major",
"release:minor": "yarn run test && bumped release minor",
"release:patch": "yarn run test && bumped release patch",
"test": "mocha __tests__/run.test.js --compilers js:babel-core/register --colors --bail",
"test:debug": "iron-node node_modules/mocha/bin/_mocha __tests__/run.test.js --compilers js:babel-core/register"
},
"dependencies": {
"ctr": "^0.4.0",
"loader-utils": "1.1.0"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.1.4",
"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",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"fixpack": "^2.3.1",
"fs-extra": "^3.0.1",
"glob-all": "^3.1.0",
"image-webpack-loader": "^3.3.1",
"iron-node": "^3.0.18",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"postcss-loader": "^2.0.5",
"react": "^15.5.4",
"react-css-modules": "^4.3.0",
"react-dom": "^15.5.4",
"should": "^11.2.1",
"style-loader": "^0.18.1",
"stylus": "^0.54.5",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5",
"yaml-loader": "^0.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}