-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "esquirejs",
"version": "0.8.3",
"description": "An ECMAScript file and module loader for the modern period.",
"keywords": [
"esm",
"amd",
"requirejs"
],
"homepage": "https://github.com/aapoalas/esquirejs",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/aapoalas/esquirejs/issues"
},
"license": "GPL-3.0",
"author": {
"name": "Aapo Alasuutari",
"email": "[email protected]",
"url": "https://github.com/aapoalas"
},
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aapoalas/esquirejs.git"
},
"scripts": {
"build": "tsc",
"build-test": "tsc --project tsconfig.test.json",
"test": "tape test/**/*.test.js",
"watch": "tsc --watch",
"watch-test": "tsc --watch --project tsconfig.test.json"
},
"prepublish": "tsc",
"sideEffects": false,
"devDependencies": {
"@types/tape": "4.2.33",
"browserify": "16.5.0",
"tape": "4.11.0",
"typescript": "3.7.2"
}
}