-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "@huehuejs/x-data",
"version": "0.0.2",
"description": "Mutant Data",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "cp package.json dist/",
"test": "nyc --reporter=html --reporter=text mocha test/**/*.spec.ts",
"predeploy": "npm run build",
"deploy": "cd dist/ && npm publish --access public",
"coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HuehueJS/x-data.git"
},
"author": "HuehueJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/HuehueJS/x-data/issues"
},
"homepage": "https://github.com/HuehueJS/x-data#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"codeclimate-test-reporter": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.4"
},
"dependencies": {
"@huehuejs/common-lang": "^0.1.1"
}
}