forked from dcodeIO/Preprocessor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (37 loc) · 1.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
{
"name": "preprocessor",
"version": "1.4.0",
"author": "Daniel Wirtz <[email protected]>",
"description": "Preprocessor.js: A JavaScript source file preprocessor, e.g. to build different versions of a library.",
"main": "Preprocessor.js",
"bin": {
"preprocess": "./bin/preprocess"
},
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/Preprocessor.js.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/Preprocessor.js/issues"
},
"keywords": ["source", "source code", "JavaScript", "ECMAScript", "preprocessor", "pre-processor", "pre processor", "processor", "utility"],
"dependencies": {
"glob": "~3.2"
},
"devDependencies": {
"testjs": "latest",
"closurecompiler": "latest"
},
"license": "Apache License, Version 2.0",
"engines": {
"node": ">=0.8"
},
"scripts": {
"prepublish": "npm test",
"test": "node node_modules/testjs/bin/testjs tests/suite.js",
"make": "npm run-script compile && npm test && npm run-script jsdoc",
"compile": "ccjs Preprocessor.js --create_source_map=Preprocessor.min.map --compilation_level=ADVANCED_OPTIMIZATIONS --externs=node > Preprocessor.min.js",
"jsdoc": "jsdoc -c jsdoc.json"
},
"preferGlobal": true
}