-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.63 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
{
"name": "stylaWidget",
"version": "2.5.2",
"contributors": [
"Mouse Braun <mouse@knoblau.ch>",
"Elias Liedholm <elias@styla.com>",
"Sven Ehlert <sven@styla.com>"
],
"description": "small, bite-sized styla feeds",
"repository": {
"type": "git",
"url": "git+https://github.com/styladev/widget.git"
},
"scripts": {
"build": "gulp && npm run doc",
"clean": "gulp clean",
"doc": "docker --input_dir src --sidebar true --colour_scheme manni --output_dir dist/doc/ && cp ./dist/doc/baseWidget.tmpl.js.html ./dist/doc/index.html",
"gulp": "gulp",
"lint": "eslint ./src ./test --ext .js",
"lintFix": "eslint ./src ./test --ext .js --fix",
"stylelint": "stylelint './src/*.css'",
"tags": "find . -type f -iregex '.*\\.js$' -not -path './node_modules/*' -not -path './build' -not -path './dist' -exec jsctags {} -f \\; | sed '/^$/d' | sort > tags",
"test": "npm run lint && npm run stylelint && npm run test:unit:coverage:cli",
"test:unit": "babel-node node_modules/.bin/_mocha --require ./test/test-setup ./test/test.js",
"test:unit:coverage": "npm run test:unit:coverage:cli && npm run test:unit:coverage:report",
"test:unit:coverage:report": "open coverage/lcov-report/index.html",
"test:unit:coverage:cli": "babel-node node_modules/.bin/babel-istanbul cover _mocha -- --reporter spec --require ./test/test-setup",
"versionBump": "node ./scripts/version_bump.js"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "7.0.0",
"babel-istanbul": "0.11.0",
"babel-preset-es2015": "6.9.0",
"babel-root-slash-import": "1.1.0",
"babelify": "7.2.0",
"browserify": "17.0.0",
"clone": "2.1.1",
"del": "2.2.2",
"docker": "git://github.com/nicolasbrugneaux/docker.git#patch-1",
"eslint": "7.24.0",
"gulp": "3.9.0",
"gulp-clean-css": "2.2.2",
"gulp-header": "1.7.1",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-uglify": "1.5.1",
"gulp-util": "3.0.8",
"istanbul-coveralls": "1.0.3",
"jsctags": "5.2.2",
"jsdom": "9.4.0",
"microbejs": "0.5.2",
"mocha": "3.5.3",
"mocha-istanbul": "0.3.0",
"promise": "7.1.1",
"sinon": "1.17.4",
"stylelint": "7.3.1",
"vinyl-source-stream": "1.1.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/styladev/widget/issues"
},
"files": [
"CODE_OF_CONDUCT.md",
"README.md",
"license.md",
"dist/",
"demo/"
],
"homepage": "https://github.com/styladev/widget",
"main": "./dist/baseWidget.js",
"keywords": [
"styla",
"widget",
"related",
"stories",
"content"
]
}