-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
58
{
"name": "now.js",
"version": "0.3.0",
"description": "now is a time toolkit for javascript",
"main": "./dist/nowjs.min.js",
"scripts": {
"start": "concurrently --kill-others \"npm run serve\" \"npm run build -- -w\"",
"serve": "gulp serve",
"test": "jest",
"prepublishOnly": "npm run build",
"build": "node build.js",
"lint": "./node_modules/.bin/eslint --fix ./src"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hongmaoxiao/now.git"
},
"keywords": [
"now",
"date",
"time",
"format",
"i18n"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hongmaoxiao/now/issues"
},
"homepage": "https://github.com/hongmaoxiao/now#readme",
"dependencies": {},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"command-line-args": "^4.0.7",
"concurrently": "^3.5.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gulp": "^3.9.1",
"gulp-webserver": "^0.9.1",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.9"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}