forked from dcodeIO/MetaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1011 Bytes
/
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
{
"name": "metascript",
"version": "1.0.0",
"author": "Daniel Wirtz <[email protected]>",
"description": "Sophisticated meta programming in JavaScript, e.g. to build different versions of a library from a single source tree.",
"main": "./MetaScript.js",
"bin": {
"metascript": "./bin/metascript",
"metac": "./bin/metac"
},
"repository": {
"type": "git",
"url": "https://github.com/dcodeIO/MetaScript.git"
},
"bugs": {
"url": "https://github.com/dcodeIO/MetaScript/issues"
},
"keywords": [
"JavaScript",
"meta programming",
"meta",
"build",
"preprocessor",
"utility"
],
"dependencies": {
"ascli": "~0.3",
"glob": "~3.2"
},
"devDependencies": {
"jsdoc": "~3.3"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.8"
},
"scripts": {
"prepublish": "npm test",
"test": "node tests/test.js",
"make": "npm test && npm run-script jsdoc",
"jsdoc": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
}
}