-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "pluggable",
"version": "1.1.4",
"description": "Write your application in functional style, and replace or transform any part.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js .",
"test": "mocha spec/run.js",
"build": "babel -d lib/ src/",
"watch": "watch 'npm run build' src/ -d",
"prepublish": "npm run check && npm run build",
"preversion": "npm run check && npm run build",
"check": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/interlockjs/pluggable.git"
},
"keywords": [
"plugin",
"architecture",
"pluggable",
"transform",
"override",
"functional"
],
"author": "Dale Bustad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/interlockjs/pluggable/issues"
},
"homepage": "https://github.com/interlockjs/pluggable",
"dependencies": {
"babel-traverse": "^6.7.3",
"babylon": "^6.7.0",
"bluebird": "^3.3.4",
"comment-parser": "^0.4.0",
"glob": "^7.0.3",
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.6.1",
"babel-preset-nodejs-lts": "^1.2.1",
"chai": "^3.5.0",
"eslint": "2.2.0",
"@divmain/eslint-config-defaults": "^10.0.0",
"eslint-plugin-filenames": "^0.2.0",
"mocha": "^2.4.5",
"require-dir": "^0.3.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"watch": "^0.17.1"
}
}