-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@puremvc/puremvc-js-util-async-command",
"version": "1.0.6",
"type": "module",
"main": "bin/cjs/puremvc.cjs",
"module": "bin/esm/puremvc.js",
"exports": {
".": {
"require": "./bin/cjs/puremvc-async-macro-command.cjs",
"import": "./bin/esm/puremvc-async-macro-command.js"
}
},
"description": "PureMVC JS MultiCore Async Command Utility",
"repository": {
"type": "git",
"url": "https://github.com/PureMVC/puremvc-js-util-async-command.git"
},
"keywords": [
"puremvc",
"mvc"
],
"scripts": {
"build": "npm run clean && npm run build:lib && cp build/index.js bin/",
"build:lib": "rollup -c build/rollup.conf.mjs",
"build:doc": "jsdoc -c build/jsdoc.json",
"clean": "rm -rf bin",
"npm:publish:dry-run": "npm publish --dry-run",
"npm:publish": "npm publish --access public",
"test": "npm run test:bdd",
"test:bdd": "mocha \"test/**/*.js\"",
"test:e2e": "npm run test:safari && npm run test:chrome && npm run test:firefox",
"test:safari": "nightwatch -c build/nightwatch.conf.cjs --env default",
"test:chrome": "nightwatch -c build/nightwatch.conf.cjs --env chrome",
"test:firefox": "nightwatch -c build/nightwatch.conf.cjs --env firefox"
},
"dependencies": {
"@puremvc/puremvc-js-multicore-framework": "^2.0.7"
},
"devDependencies": {
"jsdoc": "3.6.5",
"minami": "^1.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.6.1"
},
"files": [
"bin/**/*.*",
"LICENSE",
"VERSION",
"package.json",
"README.md"
]
}