-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.35 KB
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
{
"name": "immutable-datetime",
"version": "0.2.3",
"description": "Simplified, Immutable DateTime with No Timezones",
"main": "lib/DateTime.js",
"scripts": {
"build": "rimraf lib && babel src --ignore '_*' --out-dir lib",
"prepublish": "npm run build",
"lint": "eslint . --max-warnings 0",
"typecheck": "flow",
"test-src": "mocha src/__tests__/*.js src/**/__tests__/*.js",
"test": "npm run lint && npm run typecheck && npm run test-src"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.3.0",
"expect": "^1.16.0",
"flow-bin": "^0.23.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kodefox/immutable-datetime.git"
},
"keywords": [
"immutable",
"datetime"
],
"author": "team@kodefox.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/kodefox/immutable-datetime/issues"
},
"homepage": "https://github.com/kodefox/immutable-datetime#readme"
}