-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 940 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 940 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": "belfry",
"version": "0.1.4",
"description": "A slim date time library",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test node_modules/karma-cli/bin/karma start",
"compile": "node_modules/@babel/cli/bin/babel.js src --out-dir lib",
"prepublish": "npm run compile"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-loader": "^2.2.1",
"install": "^0.13.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.0",
"webpack": "^4.37.0"
}
}