-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.48 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.48 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "really-need",
"description": "Node require wrapper with options for cache busting, pre- and post-processing",
"version": "0.0.0",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": {
"url": "https://github.com/bahmutov/really-need/issues"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm prune",
"npm test",
"npm run test-fakes",
"npm run test-spy"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
},
"contributors": [],
"dependencies": {
"check-more-types": "2.20.2",
"lazy-ass": "1.4.0"
},
"devDependencies": {
"@semantic-release/condition-travis": "4.1.4",
"autochecker": "0.2.0",
"condition-node-version": "1.2.0",
"deps-ok": "1.1.0",
"eslint-rules": "0.4.3",
"git-issues": "1.2.0",
"grunt": "0.4.5",
"grunt-cli": "1.2.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-deps-ok": "0.9.0",
"grunt-eslint": "12.0.0",
"grunt-jscs": "2.8.0",
"grunt-mocha-test": "0.12.7",
"grunt-nice-package": "0.10.2",
"grunt-readme": "0.4.5",
"jshint-summary": "0.4.0",
"matchdep": "1.0.1",
"mocha": "2.4.5",
"pkgfiles": "2.3.0",
"pre-git": "3.8.3",
"quote": "0.4.0",
"semantic-release": "6.2.1",
"time-grunt": "1.3.0"
},
"engines": {
"node": "> 0.10.*"
},
"files": [
"index.js"
],
"homepage": "https://github.com/bahmutov/really-need",
"keywords": [
"commonjs",
"load",
"loader",
"module",
"node",
"npm",
"require",
"wrapper"
],
"license": "MIT",
"main": "index.js",
"release": {
"verifyConditions": [
{
"path": "@semantic-release/condition-travis"
},
{
"path": "condition-node-version",
"node": "4.2.2"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/really-need.git"
},
"scripts": {
"basic-tests": "npm run test-simple && npm run test-random && npm run test-nested && npm run test-no-parent",
"build": "grunt",
"cache-tests": "node test/busting-cache.js",
"check": "autochecker 0.12",
"check-all": "autochecker 0.12 5.1",
"commit": "git-issues && commit-wizard",
"extra-tests": "npm run test-pre && npm run test-post && npm run test-path && npm run test-args",
"issues": "git-issues",
"pkgfiles": "pkgfiles",
"pretest": "deps-ok",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"size": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";",
"test": "npm run build && npm run basic-tests && npm run cache-tests && npm run extra-tests",
"test-args": "node test/load-arguments.js",
"test-debug": "node test/debug.js",
"test-fake-example": "mocha test/fake-use/get-version-spec.js",
"test-fakes": "node test/load-fake-json.js && node test/load-fake.js && node test/load-fake-object.js && node test/load-fake-example.js",
"test-nested": "node test/nested-a.js",
"test-no-parent": "node test/no-parent/second.js && node test/no-parent/first.js",
"test-path": "node test/path-test.js",
"test-post": "node test/post-test.js",
"test-pre": "node test/pre-test.js",
"test-random": "node test/new-random-every-time.js",
"test-server": "mocha test/mocked-server/run.js",
"test-simple": "node test/simple.js",
"test-spy": "node test/spy-on-module/spy-on-foo.js"
}
}