-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "unittestscad",
"version": "3.0.3",
"description": "UnitTestSCAD: Unit Testing for OpenSCAD",
"main": "src/index.js",
"scripts": {
"lint-src": "eslint -c .eslintrc.src.json ./src/**/*.js",
"lint-spec": "eslint -c .eslintrc.spec.json ./spec/**/*.js",
"lint": "npm run lint-src && npm run lint-spec",
"lint-fix": "npm run lint-src -- --fix && npm run lint-spec -- --fix",
"unit-test": "nyc jasmine \"./spec/unit/**/*Spec.js\"",
"integration-test": "nyc --no-clean jasmine \"./spec/integration/**/*Spec.js\"",
"test": "npm run lint && npm run unit-test && npm run integration-test",
"precommit": "lint-staged && npm run doc && git add docs",
"doc": "jsdoc -r ./src -d docs -c ./jsdoc.conf.json",
"release": "node node_modules/llama-rlsr/src/llama-rlsr.js llama-rlsr.config.js",
"coverage-report": "nyc report --reporter=html"
},
"lint-staged": {
"./src/**/*.js": [
"npm run lint-src -- --fix",
"git add"
],
"./spec/**/*.js": [
"npm run lint-spec -- --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/HopefulLlama/UnitTestSCAD.git"
},
"keywords": [
"unit",
"test",
"openscad"
],
"author": "Jonathan Law",
"license": "MIT",
"bugs": {
"url": "https://github.com/HopefulLlama/UnitTestSCAD/issues"
},
"homepage": "https://github.com/HopefulLlama/UnitTestSCAD#readme",
"dependencies": {
"xml2js": "^0.4.17"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-plugin-jasmine": "^2.10.1",
"github-api": "^3.0.0",
"husky": "^0.14.3",
"jasmine": "^3.2.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.2",
"llama-rlsr": "0.0.6",
"llama-rlsr-keep-a-changelog": "0.0.4",
"llama-rlsr-npm": "0.0.2",
"nyc": "^13.0.1",
"proxyquire": "^2.1.0",
"rimraf": "^2.6.2",
"simple-git": "^1.98.0",
"sinon": "^6.1.5"
}
}