-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
{
"name": "preprocessor.js",
"version": "1.4.3",
"author": "Daniel Wirtz <dcode@dcode.io>",
"contributors": [
"Stanislav Lesnikov <stan@nashdot.com>"
],
"description": "Preprocessor.js: A JavaScript source file preprocessor",
"main": "Preprocessor.js",
"bin": {
"preprocess": "./bin/preprocess"
},
"repository": {
"type": "git",
"url": "https://github.com/nashdot/Preprocessor.js.git"
},
"bugs": {
"url": "https://github.com/nashdot/Preprocessor.js/issues"
},
"keywords": [
"source",
"source code",
"JavaScript",
"ECMAScript",
"preprocessor",
"pre-processor",
"pre processor",
"processor",
"utility"
],
"dependencies": {
"glob": "~6.0.0"
},
"devDependencies": {
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"tape": "^4.4.0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.12"
},
"scripts": {
"prepublish": "npm test",
"test": "node tests/run.js",
"make": "npm test && npm run-script jsdoc",
"jsdoc": "jsdoc -c jsdoc.json"
},
"preferGlobal": true
}