-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "xstatic_integration_tests",
"description": "xstatic integration tests",
"dependencies": {
"xmlbuilder": "14.0.0",
"moment": "2.22.2",
"@tcurdt/tinyutils": "1.0.1",
"babel-core": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"minimatch": "3.0.4",
"front-matter": "3.0.2",
"handlebars": "4.7.6",
"less": "3.10.0",
"marked": "0.7.0",
"highlight.js": "9.17.0",
"nunjucks": "3.2.0",
"node-sass": "4.14.1",
"chokidar": "3.2.0",
"mkdirp": "0.5.1",
"browser-sync": "2.26.6",
"@tcurdt/filepath": "1.0.0"
},
"devDependencies": {
"libxmljs": "0.19.7",
"tape": "4.13.2",
"blue-tape": "1.0.0",
"istanbul": "0.4.5",
"nyc": "15.0.0",
"faucet": "0.0.1",
"@tcurdt/package-utils": "1.0.4"
},
"main": "",
"files": [
"lib/"
],
"scripts": {
"test": "istanbul test tape -- tests/*.js core/tests/*.js plugins/*/tests/*.js | faucet",
"coverage": "nyc --reporter=lcov --reporter=text npm test | cat",
"postinstall": "./dependencies.sh",
"coverage-upload": "npm run coverage-upload-coveralls && npm run coverage-upload-codecov && npm run coverage-upload-codacy",
"coverage-upload-coveralls": "test -f ./coverage/lcov.info && cat ./coverage/lcov.info | coveralls",
"coverage-upload-codecov": "test -f ./coverage/lcov.info && cat ./coverage/lcov.info | codecov",
"coverage-upload-codacy": "test -f ./coverage/lcov.info && cat ./coverage/lcov.info | codacy-coverage"
},
"version": "1.4.6",
"author": "Torsten Curdt",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/tcurdt/xstatic.git"
},
"engines": {
"node": ">= 4.2.0"
},
"private": true
}