-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "to-time",
"version": "1.0.3",
"description": "Utility for converting textual time periods to time units",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test-source": "./node_modules/.bin/mocha ./test/spec",
"test-build": "./node_modules/.bin/mocha ./test/specBuild",
"test": "npm run test-source && npm run test-build",
"coverage": "./node_modules/.bin/istanbul cover _mocha",
"lint": "./node_modules/.bin/eslint -c .eslintrc.json --ignore-path ./.eslintignore .",
"build": "./node_modules/.bin/browserify --standalone to-time -t [ babelify --presets [ es2015 ] ] src/index.js -o lib/to-time.js",
"build-min": "./node_modules/.bin/browserify --standalone to-time -t [ babelify --presets [ es2015 ] ] src/index.js | ./node_modules/.bin/uglifyjs --compress --screw-ie8 > lib/to-time.min.js"
},
"author": "Matan Hafuta",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^4.18.2",
"istanbul": "^0.4.4",
"mocha": "^5.2.0",
"uglify-js": "^2.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hafuta/to-time.git"
},
"dependencies": {
"bignumber.js": "^2.4.0"
},
"engines": {
"node": ">=4.6"
}
}