-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 817 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 817 Bytes
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
{
"name": "common-shake",
"version": "2.1.0",
"description": "CommonJS Tree Shake",
"main": "lib/shake.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/indutny/common-shake.git"
},
"scripts": {
"lint": "eslint lib/*.js lib/**/*.js test/*.js",
"test": "nyc --reporter=html mocha --reporter=spec test/*-test.js && npm run lint"
},
"files": [
"lib"
],
"keywords": [
"commonjs",
"tree",
"shake"
],
"author": "Fedor Indutny <fedor@indutny.com> (http://darksi.de/)",
"license": "MIT",
"dependencies": {
"acorn": "^5.1.1",
"debug": "^2.6.8",
"escope": "^3.6.0"
},
"devDependencies": {
"acorn-dynamic-import": "^2.0.2",
"assert-text": "^1.1.2",
"eslint": "^4.1.1",
"mocha": "^3.4.2",
"nyc": "^11.0.3"
}
}