-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.72 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
{
"name": "arkitect.js",
"version": "1.1.4",
"description": "Small library to simplify code architecture",
"homepage": "https://github.com/davis90/arkitect.js",
"bugs": "https://github.com/davis90/Arkitect.js/issues",
"main": "lib/arkitect.min.js",
"scripts": {
"test": "cross-env BABEL_ENV=test karma start ./test/karma.conf.js --single-run",
"doc": "jsdoc --destination documentation -r ./src/",
"build": "npm run doc && npm run build:prod && npm run build:dev",
"build:prod": "webpack --mode production --output-filename arkitect.min.js",
"build:dev": "webpack --mode development --output-filename arkitect.js",
"lint": "eslint . --ignore-path ./.eslintignore"
},
"person": {
"name": "davis90",
"url": "https://github.com/davis90"
},
"repository": {
"type": "git",
"url": "https://github.com/davis90/arkitect.js.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^5.1.1",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.15.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"karma": "^3.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
}