-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "@meltwater/coerce",
"version": "0.1.0",
"description": "A simple javascript package for type checking an object",
"main": "cjs/index.js",
"scripts": {
"build": "npm run clean && babel src --out-dir cjs/ --copy-files",
"clean": "rm -rf cjs",
"docs": "documentation build src/index.js -f md > docs/API.md",
"postversion": "git push --follow-tags",
"pretest": "npm outdated && npm audit && eslint src/",
"test": "npm run build && JASMINE_CONFIG_PATH=jasmine.json istanbul cover --handle-sigint jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meltwater/coerce.git"
},
"keywords": [
"types",
"convert",
"safe"
],
"author": "Team Legion <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meltwater/coerce/issues"
},
"homepage": "https://github.com/meltwater/coerce#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-minify": "0.5.0",
"babel-preset-env": "1.7.0",
"documentation": "9.1.1",
"eslint": "5.12.1",
"is-docker": "1.1.0",
"istanbul": "0.4.5",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine": "3.3.1",
"jasmine-core": "3.3.0",
"karma": "3.1.4",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "2.0.1",
"karma-sourcemap-loader": "0.3.7",
"puppeteer": "1.11.0"
}
}