forked from dcodeIO/MetaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 757 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 757 Bytes
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
{
"name": "@uniformdev/metascript",
"version": "1.0.0",
"author": "@uniformdev/metascript",
"description": "A fork of MetaScript, originally created by dcodeIO. Maintained and updated dependencies.",
"main": "./MetaScript.js",
"bin": {
"metascript": "./bin/metascript",
"metac": "./bin/metac"
},
"keywords": [],
"license": "Apache-2.0",
"dependencies": {
"ascli": "~0.3",
"glob": "^5"
},
"devDependencies": {
"jsdoc": "~3.3"
},
"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"
},
"publishConfig": {
"access": "public"
}
}