-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "@huehuejs/name-convention",
"version": "0.1.0",
"description": "Exploring",
"main": "index.js",
"types": "index.d.ts",
"files": [
"**/*"
],
"repository": "https://github.com/HuehueJS/name-convention",
"author": "HuehueJs",
"license": "BSD",
"private": false,
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"src/**"
]
},
"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 "
},
"dependencies": {
"@huehuejs/common-lang": "^0.1.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.3",
"codeclimate-test-reporter": "^0.5.0"
}
}