-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "my-new-package",
"version": "0.0.0-pre",
"description": "{{ description }}",
"main": "compile/index.js",
"module": "src/index.js",
"scripts": {
"t": "zoroaster -a",
"test": "yarn t test/spec test/mask",
"spec": "yarn t test/spec",
"mask": "yarn t test/mask",
"dev": "node src/bin",
"compile": "depack src/bin/mnp -o compile/bin/mnp.js -a -c -S --externs types/externs.js",
"lib": "depack src/depack.js -o compile/mnp.js -a -c --source_map_include_content",
"stdlib": "depack src/stdlib.js -o stdlib/index.js -a -c -p --source_map_include_content",
"test-build": "yarn test -e test-build",
"test-compile": "yarn test -e test-compile",
"lint": "eslint .",
"doc": "doc -o README.md -n _myNewPackage -a -d",
"wiki": "doc wiki -W wiki.git -n _myNewPackage -a -d",
"b": "alamode src -o build -i stdlib.js -s --env build",
"d": "yarn-s template d1 externs",
"d1": "typal compile/index.js types/index.js -u -t types/index.xml",
"d2": "typal src -u -t types/index.xml",
"template": "typal compile/template.js -T compile/index.js -t types/api.xml",
"externs": "typal types/externs.js",
"args": "argufy -o src/bin/get-args.js"
},
"bin": {
"mnp": "compile/bin/mnp.js",
"mnp-dev": "src/bin/index.js"
},
"files": [
"build",
"src",
"compile",
"stdlib",
"types/externs.js",
"types/index.js",
"typedefs.json"
],
"externs": "types/externs.js",
"repository": {
"type": "git",
"url": "git://github.com/mnpjs/package.git"
},
"typedefs": "typedefs.json",
"keywords": [],
"author": "{{ author_name }} <{{ author_email }}>",
"license": "{{ license_spdx }}",
"bugs": {
"url": "{{ repo.html_url }}/issues"
},
"homepage": "{{ homepage }}",
"devDependencies": {
"@artdeco/npm-s": "^1.0.1",
"alamode": "^3.5.2",
"argufy": "^1.7.5",
"depack": "^1.1.2",
"documentary": "^1.37.1",
"erte": "^1.2.0",
"eslint-config-artdeco": "1.0.1",
"indicatrix": "^1.4.1",
"mnp": "^1.2.1",
"typal": "^1.26.2",
"usually": "^1.2.0",
"yarn-s": "1.2.3",
"zoroaster": "^4.3.0"
}
}