-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.72 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
85
86
87
88
89
90
{
"name": "splconfigurator",
"version": "1.0.1",
"main": "target/splconfigurator.cjs.js",
"module": "target/splconfigurator.es.js",
"jsnext:main": "target/splconfigurator.es.js",
"scripts": {
"clean": "rm -rf target/",
"prepare": "rollup -c",
"test": "npm run ava",
"coverage": "nyc --reporter=lcov --reporter=text ava",
"checkstyle": "eslint 'src/**/*.js' 'test/**/*.js' && tslint 'src/**/*.ts' 'test/**/*.ts'",
"fixstyle": "eslint --fix 'src/**/*.js' 'test/**/*.js' && tslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"ava": "ava",
"start": "babel-node --extensions '.js,.ts' src/index.js",
"tsc_copyjson": "copyfiles test/**/*.json src/**/*.json target/ts/",
"tsc": "tsc && npm run tsc_copyjson"
},
"author": "125m125",
"license": "MIT",
"dependencies": {
"inquirer": "7.3.3",
"inquirer-autocomplete-prompt": "1.3.0",
"inquirer-path": "1.0.0-beta5",
"rxjs": "6.6.3"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/core": "7.12.10",
"@babel/node": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-json-strings": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.12.7",
"@babel/preset-typescript": "7.12.7",
"@babel/register": "7.12.1",
"@babel/types": "7.12.7",
"@types/core-js": "2.5.4",
"ava": "3.14.0",
"babel-plugin-istanbul": "5.2.0",
"copyfiles": "2.4.1",
"eslint": "7.16.0",
"nyc": "14.1.1",
"rollup": "1.32.0",
"rollup-plugin-spl": "0.0.6",
"rollup-plugin-typescript": "1.0.1",
"sinon": "9.2.2",
"tslint": "6.1.3",
"typescript": "4.1.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/125m125/splconfigurator.git"
},
"keywords": [
"software-product-line",
"spl"
],
"bugs": {
"url": "https://github.com/125m125/splconfigurator/issues"
},
"homepage": "https://github.com/125m125/splconfigurator#readme",
"description": "",
"ava": {
"require": [
"./test/testUtil/babeltsregister"
],
"files": [
"test/**/*Test.js"
]
},
"nyc": {
"all": true,
"extension": [
".ts",
".js"
],
"require": [
"@babel/register"
],
"include": "src/",
"exclude": "src/index.js",
"sourceMap": false,
"instrument": false
}
}