-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "frontend-dependencies",
"version": "2.0.1",
"description": "Copies node packages to a directory where your frontend tools will be able to find them",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./test/test.js"
},
"bin": {
"frontend-dependencies": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msurdi/frontend-dependencies.git"
},
"keywords": [
"frontend",
"dependencies",
"packages",
"copy",
"vendor",
"static"
],
"files": [
"index.js"
],
"author": {
"name": "Matias Surdi",
"email": "[email protected]"
},
"contributors": [
{
"name": "Felix Furtmayr",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/msurdi/frontend-dependencies/issues"
},
"homepage": "https://github.com/msurdi/frontend-dependencies#readme",
"devDependencies": {
"mocha": "^11.0.1"
},
"dependencies": {
"shelljs": "^0.8.4"
}
}