-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 929 Bytes
/
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
{
"name": "@brightspace-ui/create",
"version": "3.4.0",
"description": "Initializer for Brightspace web components",
"repository": "https://github.com/BrightspaceUI/create.git",
"publishConfig": {
"access": "public"
},
"bin": {
"create-brightspace-ui": "./dist/create.js"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --copy-files --include-dotfiles",
"lint:eslint": "eslint .",
"test": "npm run lint:eslint"
},
"files": [
"dist"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"dependencies": {
"deepmerge": "^4",
"prompts": "^2"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7",
"@babel/eslint-parser": "7",
"@babel/preset-env": "^7",
"babel-eslint": "^10",
"babel-plugin-transform-dynamic-import": "^2",
"eslint": "^9",
"eslint-config-brightspace": "^2",
"rimraf": "^6.0.1"
}
}