-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "gemcheck-web",
"version": "0.0.1",
"description": "GemCheck webpage generator",
"main": "gulpfile.js",
"private": true,
"scripts": {
"start": "gulp",
"watch": "gulp watch",
"build": "gulp build:prod && jspm bundle-sfx index build/js/app.min.js --minify --skip-source-maps",
"devbuild": "jspm bundle-sfx index build/js/app.dev.js",
"postinstall": "jspm install",
"spellcheck": "yaspeller-ci build/index.html"
},
"author": "Vladimir Dementyev <palkan@evl.ms>",
"license": "MIT",
"devDependencies": {
"babel-plugin-transform-es2015-modules-systemjs": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"browser-sync": "^2.9.11",
"del": "^2.2.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "~>6.1.2",
"gulp-plumber": "~>1.1.0",
"gulp-postcss": "~>6.1.0",
"gulp-pug": "^3.1.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-useref": "^3.0.3",
"jspm": "^0.16.27",
"jstransformer-markdown-it": "^1.0.0",
"postcss-cssnext": "^2.9.0",
"postcss-easings": "^0.3.0",
"precss": "^1.4.0"
},
"jspm": {
"directories": {
"lib": "src/js"
},
"configFile": "jspm.config.js",
"dependencies": {
"fontfaceobserver": "npm:fontfaceobserver@^2.0.7"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
},
"dependencies": {
"highlight.js": "^9.12.0",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-container": "^2.0.0",
"yarn": "^0.27.5",
"yaspeller-ci": "^0.6.0"
}
}