-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@rico-projects/rico-js",
"version": "1.1.0",
"description": "JavaScript API of Rico",
"main": "lib/rico.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rico-project/rico-js.git"
},
"bugs": {
"url": "https://github.com/rico-project/rico-js/issues"
},
"homepage": "https://github.com/rico-project/rico-js#readme",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib/*"
],
"publishConfig": {
"access": "public"
},
"author": "rico-projects",
"contributors": [
"Michael Heinrichs <[email protected]>",
"Hendrik Ebbers <[email protected]>",
"Kunal Singh <[email protected]>",
"Timo Brandstätter <[email protected]>",
"Simon Skoczylas <[email protected]>",
"Stephan Classen <[email protected]>",
"Jochen Theodorou <[email protected]>"
],
"license": "Apache-2.0",
"scripts": {
"clean": "npx rimraf dist/ coverage/ .nyc_output/ .stryker-tmp/ reports/",
"clean:all": "npx rimraf node_modules/ dist/ coverage/ .nyc_output/ .stryker-tmp/ reports/",
"build": "npx webpack",
"build:install": "npm install && npm run build",
"test": "npm run test:mocha",
"test:mocha": "npx mocha test/src --recursive --require mocha-babel.js --require jsdom-global/register",
"test:serve": "set NODE_ENV=DEV && npx webpack-dev-server --env.dev",
"test:coverage": "npx nyc --reporter=lcov --reporter=html --reporter=text mocha test/src --recursive --require @babel/register --require jsdom-global/register",
"test:mutation": "npx stryker run",
"coverage": "npx nyc report --reporter=lcov --reporter=html --reporter=text",
"coveralls": "npx nyc report --reporter=text-lcov | coveralls",
"release": "npx release-it minor --ci"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/preset-env": "7.9.5",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.9.0",
"babel-loader": "8.1.0",
"coveralls": "3.1.0",
"chai": "4.2.0",
"eslint": "6.8.0",
"jsdom": "16.2.2",
"jsdom-global": "3.0.2",
"mocha": "7.1.2",
"nyc": "15.0.1",
"release-it": "13.5.7",
"rimraf": "3.0.2",
"sinon": "9.0.2",
"sinon-test": "3.0.0",
"@stryker-mutator/core": "3.1.0",
"@stryker-mutator/api": "3.1.0",
"@stryker-mutator/html-reporter": "3.1.0",
"@stryker-mutator/babel-transpiler": "3.1.0",
"@stryker-mutator/javascript-mutator": "3.1.0",
"@stryker-mutator/mocha-framework": "3.1.0",
"@stryker-mutator/mocha-runner": "3.1.0",
"terser-webpack-plugin": "2.3.6",
"typescript": "3.8.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"dependencies": {
"emitter-component": "1.1.1"
}
}