-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.05 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
71
72
73
74
75
76
{
"name": "amd-bundle",
"version": "1.7.8",
"description": "A dual-use tool for bundling up AMD modules, which is much easier to use than r.js with Almond or AMDclean",
"keywords": [
"javascript",
"amd-loader",
"bundle",
"require-js",
"command-line"
],
"author": "[email protected]",
"license": "AGPL-3.0",
"homepage": "https://tech-query.me/AMD_bundle.js/",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/AMD_bundle.js.git"
},
"bugs": {
"url": "https://github.com/TechQuery/AMD_bundle.js/issues"
},
"main": "build/Package.js",
"bin": "build/index.js",
"engines": {
"node": "^6.3.0"
},
"scripts": {
"lint": "eslint source/ test/*.js --fix",
"bundle": "babel source/ -d build/ -s",
"set-test": "node -e \"console.log('exports.test = 1;')\" > node_modules/test.js",
"test": "npm run set-test && mocha --exit",
"debug": "npm run set-test && mocha --inspect-brk",
"build": "npm run lint && npm run bundle && npm test && esdoc",
"prepublishOnly": "npm run build",
"start": "web-server docs/ -o"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ."
}
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@tech_query/node-toolkit": "^0.9.3",
"commander": "^2.19.0",
"fs-extra": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-plugin-inline-import": "^3.0.0",
"cross-env": "^5.2.0",
"esdoc": "^1.1.0",
"esdoc-external-nodejs-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.15.2",
"husky": "^1.3.1",
"koapache": "^1.0.6",
"mocha": "^6.0.2",
"should": "^13.2.3"
},
"amd-bundle": {
"env": {
"test": {
"moduleMap": {
"/Test/i": "$&4sample"
}
}
}
}
}