forked from nbcnews/storygist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
{
"name": "storygist",
"version": "0.3.6",
"description": "A jQuery plugin for generating a story gist that gives you the overall story quickly.",
"private": true,
"pre-commit": "lint-staged",
"main": "dist/storygist.bundle.js",
"scripts": {
"dev": "gulp serve",
"build": "gulp build",
"dist": "gulp build --dist",
"deploy": "gulp deploy",
"style-lint": "stylelint 'src/**/*.scss'",
"script-lint": "standard --verbose",
"lint-staged": "lint-staged",
"webpack": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.scss": "style-lint",
"*.js": "script-lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nbcnews/storygist.git"
},
"author": "EJ Fox, Max Peterson, Ian Rose",
"license": "MIT",
"bugs": {
"url": "https://github.com/nbcnews/storygist/issues"
},
"stylelint": {
"extends": "stylelint-config-standard"
},
"standard": {
"ignore": [
"dist/**",
"build/**"
]
},
"homepage": "https://github.com/nbcnews/storygist#readme",
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"browser-sync": "^2.18.12",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-node": "5.1.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"event-stream": "3.3.4",
"gulp": "^3.9.1",
"gulp-concat": "2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sequence": "^0.4.6",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.1.2",
"lint-staged": "^3.4.1",
"pre-commit": "^1.2.2",
"serve-index": "^1.8.0",
"standard": "^10.0.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"webpack": "3.2.0"
},
"dependencies": {
"debug": "^3.0.0",
"hammerjs": "2.0.8",
"navigo": "5.2.0"
}
}