-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
39
40
41
42
43
{
"name": "@huehuejs/common-lang",
"private": false,
"version": "0.1.2",
"description": "Exploring",
"main": "index.js",
"types": "index.d.ts",
"files": [
"**/*"
],
"repository": "https://github.com/HuehueJS/common-lang",
"author": "HuehueJs",
"license": "MIT",
"standard": {
"ignore": [
"coverage/**",
"node_modules/**"
]
},
"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 "
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"codeclimate-test-reporter": "^0.5.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"directories": {
"test": "test"
}
}