-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.48 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
46
47
48
49
50
51
{
"name": "moment-immutable",
"version": "1.0.9",
"description": "Make moment.js immutable",
"main": "moment-immutable.js",
"typings": "./moment-immutable.d.ts",
"scripts": {
"test": "npm run test:dev && npm run test:prod && npm run test:typings",
"test:dev": "karma start --singleRun",
"test:prod": "cross-env MINIFIED_TESTS=true karma start --single-run",
"test:typings": "tsc --project tests/typings-tests",
"start": "npm run test:dev",
"build": "uglifyjs --compress --mangle -- moment-immutable.js > moment-immutable.min.js",
"prepare": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartin85/moment-immutable.git"
},
"keywords": [
"momentjs",
"date",
"immutable",
"react"
],
"author": "Smartin Nematronic",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartin85/moment-immutable/issues"
},
"homepage": "https://github.com/smartin85/moment-immutable#readme",
"peerDependencies": {
"moment": ">= 2.8.1 <3.0.0"
},
"devDependencies": {
"@types/moment": "2.13.0",
"cross-env": "^7.0.3",
"jasmine-core": "3.6.0",
"karma": "6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "2.0.3",
"karma-coveralls": "2.1.0",
"karma-eslint": "2.2.0",
"karma-global-preprocessor": "0.0.2",
"karma-jasmine": "4.0.1",
"moment": "2.29.2",
"npm-run-all": "4.1.5",
"typescript": "4.1.3",
"uglify-js": "3.12.7"
}
}