-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.31 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
{
"name": "@djanta/djantajs-compiler-core",
"description": "djanta.io initiative that help developer for auto generate the platform dependent .djanta-rc.json",
"version": "1.0.7",
"homepage": "https://github.com/djanta/djantajs-compiler-core",
"keywords": [
"djantajs",
"djanta",
"annotation",
"djantaio",
"compiler"
],
"repository": {
"type": "git",
"url": "git@github.com/djanta/djantajs-compiler-core.git"
},
"bugs": {
"url": "https://github.com/djantaio/djantajs-compiler-core/issues"
},
"author": "djantajs.team@djantajs.io",
"contributors": [
"Stanislas KOFFI ASSOUTOVI <stanislaska@djantajs.io> (https://github.com/stanislaska)"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/djanta/djantajs-compiler-core/blob/master/LICENSE"
}
],
"engines": {
"node": ">=6.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "./index.js",
"scripts": {
"test": "echo NYI!",
"coverage": "npm run coverage:coveralls && npm run coverage:codeclimate",
"coverage:codeclimate": "./node_modules/.bin/nyc report --reporter=lcov | ./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info",
"coverage:coveralls": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"snyk": "./node_modules/.bin/snyk test --file=./package.json",
"snyk:publish": "./node_modules/.bin/snyk wizard --file=./package.json",
"snyk:monitor": "./node_modules/.bin/snyk monitor --file=./package.json",
"snyk:login": "./node_modules/.bin/snyk auth",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"conga-annotations": "^1.0.0",
"dateformat": "^3.0.3",
"glob": "^7.1.2",
"lodash": "^4.17.10",
"path-to-regexp": "^2.2.1",
"semver": "^5.5.0",
"url-pattern": "^1.0.3",
"snyk": "^1.95.3"
},
"devDependencies": {
"bump": "^0.2.5",
"grunt-bump": "^0.8.0",
"grunt": "~1.0.3",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"should": "^13.2.3",
"coveralls": "^3.0.2",
"codeclimate-test-reporter": "^0.5.0"
},
"snyk": true
}