-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "es-deps-deep",
"version": "2.0.0",
"description": "ECMAScript 2015+/CommonJS module dependencies resolved in depth",
"main": "index.es5.js",
"jsnext:main": "index.js",
"files": [
"index.es5.js",
"index.js"
],
"scripts": {
"lint": "eslint .",
"watch": "npm run transpile -- --watch",
"coverage": "nyc -r=text -r=lcov npm test",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"test": "ava --require babel-register",
"tdd": "npm test -- --watch",
"transpile": "babel index.js --out-file index.es5.js",
"prepublish": "npm run transpile",
"clean": "rimraf index.es5.js",
"push": "git push --follow-tags",
"postpublish": "npm-run-all clean push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamstarkov/es-deps-deep.git"
},
"keywords": [
"modules",
"commonjs",
"cjs",
"es6",
"es2015",
"ecmascript",
"harmony",
"import",
"require"
],
"author": "Vladimir Starkov <[email protected]> (https://iamstarkov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamstarkov/es-deps-deep/issues"
},
"homepage": "https://github.com/iamstarkov/es-deps-deep#readme",
"devDependencies": {
"ava": "^0.15.0",
"babel-cli": "6.7.7",
"babel-eslint": "^6.0.3",
"babel-plugin-add-module-exports": "^0.1.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "6.7.2",
"chokidar": "^1.4.3",
"coveralls": "^2.11.8",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^1.0.4",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-require-path-exists": "^1.1.5",
"npm-run-all": "^1.5.1",
"nyc": "^6.0.0",
"rimraf": "^2.5.2"
},
"dependencies": {
"es-dep-kit": "^1.0.1",
"es-dep-unit": "^2.0.0",
"es-deps-resolved": "^1.0.1",
"is-builtin-module": "^1.0.0",
"neat-contract": "^1.0.0",
"pinkie-promise": "^2.0.1",
"ramda": "^0.21.0",
"resolve-cwd": "^1.0.0"
}
}