-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 972 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
{
"name": "silly-datetime",
"version": "0.1.2",
"description": "simple datetime formater",
"main": "dest/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"prepublish": "node rollup.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/csbun/silly-datetime.git"
},
"keywords": [
"datetime",
"format"
],
"author": "Hans Chan",
"license": "MIT",
"bugs": {
"url": "https://github.com/csbun/silly-datetime/issues"
},
"homepage": "https://github.com/csbun/silly-datetime",
"devDependencies": {
"babel-preset-es2015-rollup": "^1.0.0",
"coveralls": "^2.11.3",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"rollup": "^0.21.0",
"rollup-plugin-babel": "^2.1.0"
}
}