-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1002 Bytes
/
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": "amend",
"version": "0.4.2",
"description": "Dependency injection module and IoC container.",
"main": "index.js",
"bin": {
"amend-annotate": "./bin/annotate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TheLudd/amend"
},
"dependencies": {
"@babel/parser": "^7.8.4",
"fs-extra": "^8.1.0",
"ramda": "^0.15.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coffee-script": "^1.9.0",
"mocha": "^5.0.0",
"mocha-gwt": "^0.2.0",
"pikaday": "^1.7.0",
"source-map-support": "^0.5.2"
},
"scripts": {
"clean": "rm -rf dist",
"transpile": "coffee -o dist -cb lib",
"prepublishOnly": "yarn clean && yarn transpile",
"test": "mocha test/**/*.coffee"
},
"files": [
"README.md",
"bin/",
"dist/",
"lib/",
"browserify.js",
"index.js",
"tools.js"
],
"keywords": [
"di",
"ioc",
"dependency injection"
],
"author": "Ludwig Magnusson",
"license": "ISC"
}