forked from elvoline/twig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "@elvoline/twig",
"version": "2.1.3",
"description": "twig.js renderer for elvoline",
"module": "dist/es.js",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:elvoline/twig.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config",
"lint": "eslint --version && eslint .",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc mocha",
"posttest": "npm run coverage",
"coverage": "nyc report --reporter=lcov",
"codecov": "codecov",
"prepublish": "npm run build",
"docs": "jsdoc -c jsdoc.json"
},
"author": "Elvoline S.à r.l.",
"license": "ISC",
"nyc": {
"require": [
"@babel/register",
"./test/helper.js"
]
},
"dependencies": {},
"peerDependencies": {
"jquery": "^3.0.0",
"twig": "^1.11.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"greenkeeper-lockfile": "^1.15.1",
"jquery": "^3.3.1",
"jsdoc": "^3.5.5",
"jsdom": "^13.0.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"rollup": "^0.67.0",
"rollup-plugin-babel": "^4.0.3",
"sinon": "^6.3.4",
"sinon-chai": "^3.2.0",
"twig": "^1.12.0",
"xhr-mock": "^2.4.1"
}
}