-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.12 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": "dilite",
"version": "3.0.2",
"description": "A light weight DI container",
"homepage": "https://www.github.com/chetanism/dilite",
"repository": "chetanism/dilite",
"author": {
"name": "Chetan Verma",
"email": "[email protected]"
},
"license": "ISC",
"keywords": [
"DI",
"IoC",
"dependency injection",
"container"
],
"main": "lib/index.js",
"babel": {
"ignore": [
"**/*.test.js"
],
"presets": [
[
"env",
{
"targets": {
"node": "8"
}
}
]
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"jest": {
"testURL": "http://localhost"
},
"dependencies": {
"public-class": "0.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.4.2",
"prettier": "^1.14.0"
},
"scripts": {
"test": "jest",
"prettier": "prettier --write \"src/**/*.js\"",
"clean": "rm -rf lib",
"compile": "babel src -d lib",
"build": "npm run prettier && npm run test && npm run clean && npm run compile"
}
}