-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.35 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
{
"name": "nodelib-mpe",
"description": "Nodelib",
"version": "0.0.9-dev",
"homepage": "https://github.com/dotmpe/nodelib",
"author": "B. van Berkum <[email protected]>",
"keywords": [
"GIT-mpe"
],
"repository": {
"type": "git",
"url": "https://github.com/dotmpe/nodelib.git"
},
"bugs": {
"url": "https://github.com/dotmpe/nodelib/issues"
},
"license": "GPL-3.0",
"licenses": [
{
"type": "GPL-3.0",
"url": "https://github.com/dotmpe/node-sitefile/blob/master/LICENSE"
}
],
"contributors": [],
"engines": {
"node": ">= 0.12.0"
},
"main": "dist/nodelib.js",
"bin": {
"nodelib-specs": "./bin/specs.coffee"
},
"scripts": {
"test": "grunt lint test",
"build": "grunt build",
"check": "grunt check",
"update-spec": "sh ./tools/update-spec.sh",
"mocha": "mocha --compilers coffee:coffeescript/register test/mocha/*.coffee",
"mocha-test": "mocha --compilers coffee:coffeescript/register",
"src-tree": "tree -I 'node_modules|build|components'",
"src-files": "cat .srcignore .gitignore | sed -e 's/\\(.*\\)/-not -path \"*\\1*\" /' | xargs find . -type f ",
"src-loc": "cat .gitignore | sed -e 's/\\(.*\\)/-not -path \"*\\1*\" /' | xargs find ./ -type f -not -path '*.log' | xargs cat | grep -v '^\\s*$' | wc -l | awk '{print $1}'",
"dep-local": "echo node_modules/* | xargs basename | sort -u | awk '{print $1}'",
"dep-local-all": "find node_modules/ -iname node_modules | xargs /bin/ls -w1 | grep -v '^$' | grep -v 'node_modules' | sort -u | awk '{print $1}'"
},
"dependencies": {
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"uuid": "^3.3.3",
"source-map-support": "^0.5.16"
},
"devDependencies": {
"babel-loader": "^8.0.6",
"bluebird": "^3.7.2",
"chai": "^4.2.0",
"coffee-loader": "^0.9.0",
"coffeelint": "^2.1.0",
"coffeescript": "^2.4.1",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-coffeelint": "^0.0.16",
"grunt-contrib-coffee": "2.1.0",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-watch": "1.1.0",
"grunt-exec": "^3.0.0",
"grunt-jasmine-node-coffee": "^0.1.4",
"grunt-mocha-test": "^0.13.3",
"grunt-yamllint": "0.2.0",
"gulp": "^4.0.2",
"load-grunt-config": "3.0.1",
"load-grunt-tasks": "5.1.0",
"madge": "^3.6.0",
"mocha": "^6.2.2",
"webpack": "^4.41.2"
}
}