forked from theintern/intern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.5 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "intern",
"version": "4.0.0-pre",
"description": "Intern. A next-generation code testing stack for JavaScript.",
"homepage": "http://theintern.io/",
"license": "BSD-3-Clause",
"bugs": "https://github.com/theintern/intern/issues",
"files": [
"index.*",
"*.js",
"*.js.map",
"bin/*.js",
"favicon.*",
"browser/*.html",
"browser/config.js",
"browser/intern.js",
"browser/remote.js",
"lib",
"loaders",
"tasks",
"tests",
"types"
],
"keywords": [
"javascript",
"test",
"unit",
"testing",
"ci",
"continuous integration",
"bdd",
"tdd",
"xunit",
"istanbul",
"chai",
"dojo",
"toolkit",
"selenium",
"sauce labs",
"code coverage"
],
"repository": {
"type": "git",
"url": "https://github.com/theintern/intern.git"
},
"bin": {
"intern": "./bin/intern.js"
},
"scripts": {
"build": "intern-dev-clean && concurrently intern-dev-build intern-dev-api",
"clean": "intern-dev-clean",
"lint": "intern-dev-lint",
"release": "intern-dev-release",
"test": "NODE_PATH=_build node _tests/src/bin/intern.js",
"preci": "intern-dev-build",
"ci": "npm test config=@ci",
"watch": "intern-dev-build watch"
},
"dependencies": {
"@dojo/core": "~2.0.0-beta2.3",
"@dojo/has": "~2.0.0-beta2.2",
"@dojo/interfaces": "~2.0.0-beta2.2",
"@dojo/shim": "~2.0.0-beta2.3",
"@theintern/digdug": "~2.0.0-beta.10",
"@theintern/leadfoot": "~2.0.0-beta.12",
"@types/benchmark": "~1.0.30",
"@types/chai": "~4.0.1",
"@types/charm": "~1.0.0",
"@types/diff": "~3.2.0",
"@types/istanbul-lib-coverage": "~1.1.0",
"@types/istanbul-lib-hook": "~1.0.0",
"@types/istanbul-lib-instrument": "~1.7.0",
"@types/istanbul-lib-report": "~1.1.0",
"@types/istanbul-lib-source-maps": "~1.2.0",
"@types/istanbul-reports": "~1.1.0",
"@types/lodash": "~4.14.65",
"@types/mime-types": "~2.1.0",
"@types/platform": "~1.3.0",
"@types/shell-quote": "~1.6.0",
"@types/source-map": "~0.1.29",
"@types/ws": "~0.0.38",
"benchmark": "~2.1.4",
"chai": "~4.0.2",
"charm": "~1.0.2",
"diff": "~3.2.0",
"glob": "~7.1.1",
"istanbul-lib-coverage": "~1.1.1",
"istanbul-lib-hook": "~1.0.7",
"istanbul-lib-instrument": "~1.7.3",
"istanbul-lib-report": "~1.1.1",
"istanbul-lib-source-maps": "~1.2.1",
"istanbul-reports": "~1.1.1",
"lodash": "~4.17.4",
"mime-types": "~2.1.15",
"platform": "~1.3.4",
"shell-quote": "~1.6.1",
"source-map": "~0.5.6",
"ws": "~2.3.1"
},
"devDependencies": {
"@dojo/loader": "~2.0.0-beta2.2",
"@theintern/dev": "~0.5.5",
"@types/chalk": "~0.4.31",
"@types/glob": "~5.0.30",
"@types/grunt": "~0.4.21",
"@types/node": "~8.0.8",
"@types/shelljs": "~0.7.2",
"@types/sinon": "~2.3.2",
"@types/systemjs": "~0.20.2",
"@types/webpack": "~3.0.1",
"ajv": "~5.2.0",
"concurrently": "~3.5.0",
"css-loader": "~0.28.4",
"sinon": "~2.3.6",
"style-loader": "~0.18.2",
"stylus": "~0.54.5",
"stylus-loader": "~3.0.1",
"ts-node": "~3.2.0",
"umd-compat-loader": "~2.1.0",
"webpack": "~3.0.0"
},
"internDev": {
"resources": {
"_build": [
"src/**/*.{styl,d.ts,html,js,png}",
"src/**/!(tsconfig).json"
],
"_build/src": [
"types/**",
"bin/**"
],
"_tests": [
"tests/**/*.{xml,d.ts,js}",
"src/**/*.{styl,d.ts,html,js,png}"
]
}
}
}