-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.08 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
{
"name": "@scottjarvis/tea",
"version": "1.0.18",
"description": "Test Environment Application",
"author": "sc0ttj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sc0ttj/tea.git"
},
"homepage": "https://github.com/sc0ttj/tea",
"main": "dist/tea.js",
"module": "dist/tea.es6.js",
"es2015": "dist/tea.es6.js",
"main:umd": "dist/tea.umd.js",
"browser": "dist/tea.umd.js",
"unpkg": "dist/tea.umd.js",
"source": "src/tea.js",
"scripts": {
"build": "microbundle --name tea --compress",
"dev": "microbundle watch",
"test": "microbundle --name tea --compress && echo 'Build complete... No tests yet!'"
},
"keywords": [
"test-runner",
"test",
"testing",
"unit-tests",
"integration-tests",
"tdd",
"bdd",
"assert",
"tap"
],
"files": [
"dist/tea.js",
"dist/tea.es6.js",
"dist/tea.umd.js"
],
"dependencies": {},
"devDependencies": {
"microbundle": "^0.11.0"
},
"bugs": {
"url": "https://github.com/sc0ttj/tea/issues"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
}
}