-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.18 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": "pre-require",
"version": "1.2.0",
"description": "Pre-require is a small global script, helps you create a module of array object with required assets from the folder that you point out.",
"main": "transpiled.js",
"engines": {
"node": ">=7.6"
},
"bin": {
"pre-require": "transpiled.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"transpile": "babel index.js -o transpiled.js",
"start": "npm run transpile; node transpiled.js test-assets/ assets.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/btk/pre-require.git"
},
"keywords": [
"require",
"all",
"pre",
"require"
],
"author": "btk",
"license": "MIT",
"bugs": {
"url": "https://github.com/btk/pre-require/issues"
},
"homepage": "https://github.com/btk/pre-require#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"jest": "^21.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
},
"dependencies": {
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": ["html", "text", "text-summary"]
}
}