forked from knapsack-cloud/twig-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.79 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
82
83
84
85
86
87
88
89
90
{
"name": "@basalt/twig-renderer",
"version": "2.1.0",
"description": "Render templates using Twig PHP, via this Node JS renderer.",
"main": "dist/twig-renderer.js",
"module": "dist/twig-renderer.mjs.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf dist && mkdir dist && cp src/*.php dist/ && rollup --config rollup.config.js",
"start": "nodemon --ext .js,.php --watch src/ --watch config.schema.json --exec 'npm run build' ",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"jest": "jest --detectOpenHandles",
"jest:watch": "npm run jest -- --watch",
"test": "npm run lint && npm run jest",
"precommit": "npm run lint:fix",
"prepush": "npm test",
"prepare": "composer install --no-dev --optimize-autoloader --prefer-dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"ajv": "^6.5.2",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"get-port": "^5.0.0",
"node-fetch": "^2.1.2",
"sleep-promise": "^8.0.1"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.0",
"@semantic-release/npm": "^5.0.5",
"@semantic-release/release-notes-generator": "^7.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "^23.6.0",
"nodemon": "^1.18.2",
"regenerator-runtime": "^0.13.1",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0"
},
"files": [
"config.schema.json",
"dist",
"index.d.ts",
"vendor"
],
"commentOnFiles": "we are explicitely including 'vendor' in the 'files' array above so it is present on install without the need to run 'composer install'. ",
"repository": {
"type": "git",
"url": "git+https://github.com/basaltinc/twig-renderer.git"
},
"keywords": [
"twig"
],
"maintainers": [
{
"name": "Evan Lovely",
"url": "http://evanlovely.com"
},
{
"name": "Salem Ghoweri",
"url": "https://twitter.com/salem_ghoweri"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/basaltinc/twig-renderer/issues"
},
"homepage": "https://github.com/basaltinc/twig-renderer#readme",
"publishConfig": {
"access": "public"
}
}