-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
128 lines (128 loc) · 3.58 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "measure",
"version": "1.0.0",
"private": true,
"main": "index.js",
"description": "Make html to be measurable",
"author": "imcuttle",
"scripts": {
"dev": "lerna run dev --parallel",
"dist": "lerna run dist --parallel",
"test": "jest",
"postinstall": "lerna bootstrap",
"release": "lerna publish --conventional-commits -m 'chore(release): publish %s'",
"prerelease": "npm test",
"precommit": "node scripts/gen-readme.js && git add README.md && pretty-quick --staged"
},
"edam": {
"source": "./src/components/__Template__",
"output": "./src/components"
},
"engines": {
"node": ">=6"
},
"keywords": [
"imcuttle",
"html-measure"
],
"license": "MIT",
"repository": "imcuttle/html-measure",
"jest": {
"testPathIgnorePatterns": [
"__Template__"
],
"testMatch": [
"**/__test{s,}__/*.(spec|test).{t,j}s{x,}",
"**/test{s}/*.(spec|test).{t,j}s{x,}"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@rcp/util.createmount": "^1.0.9",
"@types/jest": "^23.3.2",
"autoprefixer": "^9.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"color": "^3.0.0",
"conventional-changelog-cli": "^2.0.5",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"enzyme": "^3.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gentle-cli": "^1.0.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"lerna": "^3.3.1",
"less-loader": "^4.1.0",
"lodash.foreach": "^4.5.0",
"lodash.some": "^4.6.0",
"mobx": "^3.6.2",
"postcss-loader": "^3.0.0",
"prefix-classname": "^1.0.1",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"prop-types": "^15.6.2",
"raw-loader": "^0.5.1",
"rc-checkbox": "^2.1.5",
"react-highlight": "^0.12.0",
"react-select": "^2.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^5.0.2",
"skip-if": "^1.1.1",
"style-loader": "^0.23.0",
"tiny-i18n": "^1.1.2",
"url-loader": "^1.1.1",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.0",
"zepto": "^1.2.0"
},
"dependencies": {
"@moyuyc/psd": "^3.2.2",
"@rcp/util.createlogger": "^1.1.0",
"globby": "^8.0.1",
"handlebars": "^4.0.12",
"hast-util-to-html": "^4.0.1",
"hastscript": "^4.0.0",
"history": "^4.7.2",
"inherits": "^2.0.3",
"is-ci": "^1.2.1",
"less": "^3.8.1",
"md5": "^2.2.1",
"mkdirp": "^0.5.1",
"pify": "^4.0.0",
"prismjs": "^1.15.0",
"react-prism": "^4.3.2",
"slugify": "^1.3.1",
"tree-crawl": "^1.0.5",
"webpack": "^4.19.0",
"webpack-dev-middleware": "^3.3.0",
"webpack-dev-server": "^3.1.8"
}
}