-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@puremvc/puremvc-js-multicore-framework",
"version": "2.0.9",
"description": "PureMVC MultiCore Framework for JavaScript",
"type": "module",
"main": "bin/cjs/index.cjs",
"module": "bin/esm/index.js",
"exports": {
".": {
"require": "./bin/cjs/index.cjs",
"import": "./bin/esm/index.js"
}
},
"scripts": {
"build": "npm run clean && npm run build:lib",
"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 && npm run test:edge",
"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",
"test:edge": "nightwatch -c build/nightwatch.conf.cjs --env edge"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PureMVC/puremvc-js-multicore-framework.git"
},
"homepage": "https://puremvc.org",
"bugs": {
"url": "https://github.com/PureMVC/puremvc-js-multicore-framework/issues"
},
"keywords": [
"puremvc",
"mvc"
],
"files": [
"bin/**/*.*",
"LICENSE",
"VERSION",
"package.json"
],
"author": "Saad Shams, David Foley, Cliff Hall",
"license": "BSD-3-Clause",
"authors": [
"Saad Shams <[email protected]>",
"David Foley <[email protected]>",
"Cliff Hall <[email protected]>"
],
"directories": {
"doc": "docs",
"test": "test",
"bin": "bin"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"add-module-exports"
]
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"babel-core": "^4.7.16",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-env": "^0.0.0",
"chai": "^4.2.0",
"chromedriver": "^130.0.2",
"dotenv": "^16.0.3",
"edgedriver": "^5.3.8",
"geckodriver": "^4.2.1",
"jsdoc": "^3.6.11",
"minami": "^1.2.3",
"mocha": "10.1.0",
"nightwatch": "^3.3.2",
"rollup": "^4.6.1"
}
}