-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
160 lines (160 loc) · 4.59 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "metalsmith-debug-ui",
"author": "Levi Wheatcroft <levi@wheatcrofts.com.au> (http://leviwheatcroft.com)",
"description": "A metalsmith plugin providing ui to navigate files and meta during build",
"repository": "git://github.com/leviwheatcroft/metalsmith-debug-ui.git",
"homepage": "http://leviwheatcroft.github.io/metalsmith-debug-ui",
"version": "0.3.3",
"keywords": [
"metalsmith",
"debug"
],
"bugs": {
"url": "https://github.com/leviwheatcroft/metalsmith-debug-ui/issues"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "npm run babel && npm run client:prodn && npm run docs && cp docs/README.md.html docs/index.html && npm run gh-pages",
"client": "cross-env DEBUG=metalsmith* babel-node build",
"client:prodn": "cross-env DEBUG=metalsmith* NODE_ENV=production babel-node build",
"readme": "node-readme",
"babel": "cross-env NODE_ENV=node6 babel lib -d dist --ignore client",
"babel:watch": "cross-env NODE_ENV=node6 babel lib --watch -d dist --ignore client",
"docs": "npm run readme && rm -fr ./docs/* && docker -o ./docs -I -x dist,.README.md,test/fixtures,node_modules,docs,.store,config && cp --parents images/* docs",
"gh-pages": "gh-pages -d docs",
"test:coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text --check-coverage --lines 100 npm run test",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-register test",
"test:watch": "cross-env NODE_ENV=test mocha --compilers js:babel-register --watch test",
"version": "npm run build",
"postversion": "git push && git push --tags",
"watch": "npm-watch"
},
"watch": {
"babel": {
"patterns": [
"lib"
],
"ignore": [
"lib/client",
"lib/build.js"
]
},
"client": {
"patterns": [
"lib/client",
"dist/build.js"
],
"extensions": "js,jsx,html,less"
}
},
"dependencies": {
"debug": "^2.6.8",
"lodash.set": "^4.3.2",
"lodash.transform": "^4.6.0",
"strip-ansi": "^3.0.1",
"vow": "^0.4.14",
"wrap-fn": "^0.1.5"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"bootstrap": "^3.3.7",
"bootstrap-webpack": "0.0.6",
"browser-request": "^0.3.3",
"chai": "^3.5.0",
"concurrently": "^3.4.0",
"config": "^1.24.0",
"cross-env": "^3.1.3",
"css-loader": "^0.28.0",
"docker": "^1.0.0",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"gh-pages": "^0.12.0",
"hjson": "^2.4.1",
"immutability-helper": "^2.2.2",
"imports-loader": "^0.7.1",
"jquery": "^3.2.1",
"jsonview": "^1.2.0",
"jstransformer": "^1.0.0",
"jstransformer-pug": "^0.2.3",
"less-loader": "^4.0.3",
"metalsmith": "^2.3.0",
"metalsmith-ignore": "^1.0.0",
"metalsmith-in-place": "^2.0.1",
"metalsmith-less": "^2.0.0",
"metalsmith-webpack-2": "^1.0.5",
"mocha": "^5.2.0",
"mocha-eslint": "^3.0.1",
"nock": "^9.0.2",
"node-readme": "^0.1.9",
"node-resemble-js": "^0.1.1",
"npm-watch": "^0.1.8",
"nyc": "^13.1.0",
"react": "^15.5.4",
"react-bootstrap": "^0.30.8",
"react-cookie": "^1.0.5",
"react-dom": "^15.5.4",
"react-filterable-table": "^0.3.0",
"react-json-tree": "^0.10.7",
"sinon": "^1.17.7",
"socket.io-client": "^2.1.1",
"style-loader": "^0.16.1",
"url-loader": "^1.1.2",
"webpack": "^2.3.3"
},
"eslintConfig": {
"rules": {
"react/jsx-uses-vars": [
2
]
},
"parser": "babel-eslint",
"extends": "standard",
"installedESLint": true,
"plugins": [
"standard",
"babel",
"react"
],
"env": {
"node": true,
"mocha": true
}
},
"babel": {
"presets": [
"stage-0",
"es2015"
]
},
"nyc": {
"include": [
"lib/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"directories": {
"test": "test"
}
}