-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
67 lines (67 loc) · 1.53 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
{
"name": "preprocess",
"description": "Preprocess directives in HTML, JavaScript, etc directives based off variable context",
"version": "3.2.0",
"homepage": "https://github.com/jsoverson/preprocess",
"author": {
"name": "Jarrod Overson",
"email": "[email protected]",
"url": "http://jarrodoverson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/jsoverson/preprocess.git"
},
"bugs": {
"url": "https://github.com/jsoverson/preprocess/issues"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "https://github.com/jsoverson/preprocess/blob/master/LICENSE"
}
],
"main": "lib/preprocess.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "grunt test",
"ci": "grunt ci"
},
"dependencies": {
"xregexp": "^4.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"grunt": "^1.1.0",
"grunt-benchmark": "^1.0.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.2",
"load-grunt-tasks": "^5.1.0",
"mocha": "7.1.2",
"time-grunt": "^2.0.0",
"travis-cov": "^0.2.5"
},
"keywords": [
"directive",
"ENV",
"environment",
"ifdef",
"ifndef",
"echo",
"include",
"exclude",
"process",
"preprocess",
"pragma"
]
}