-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
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
{
"name": "@gollum-js/proxy-array",
"version": "1.1.0",
"description": "Create a proxy for array accessor",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"esnext": "dist/esm/index.js",
"typings": "./dist/typings/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && npm run build:test && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:test": "tsc -p tsconfig.test.json && node_modules/.bin/browserify dist/tests/tests/proxy-array.test.js > dist/tests/bundle.js && cp ./tests/index.html ./dist/tests/index.html",
"clean": "rm -fr dist",
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git@github.com:GollumJS/proxy-array.git"
},
"keywords": [
"proxy",
"array",
"accessor"
],
"author": "Damien Duboeuf <smeagolworms4@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GollumJS/proxy-array/issues"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"browserify": "^17.0.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.6.3"
},
"files": [
"README.mb",
"LICENSE",
"tsconfig.json",
"tsconfig.esm.json",
"tsconfig.test.json",
"package.json",
"package-lock.json",
"src/**/*.ts",
"tests/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.html"
]
}