-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.57 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
{
"name": "clone-function",
"version": "2022.11.16",
"description": "Clones non native JavaScript functions, or references native functions.",
"main": "./src/clone-function.js",
"directories": {
"lib": "src",
"doc": "docs"
},
"devDependencies": {
"atropa-jsformatter": "git+https://github.com/matthewkastor/atropa-jsformatter.git#gh-pages",
"atropa-jslint": "git+https://github.com/matthewkastor/atropa-jslint.git#master",
"browserify": ">=17.0.0",
"jasmine-node": ">=1.11.0",
"jsdoc-toolkit": "git+https://github.com/matthewkastor/node-jsdoc-toolkit.git#fix-tests"
},
"scripts": {
"test": "jasmine-node specs/",
"buildBrowserModule": "node dev/browserify.js",
"buildDocs": "jsdoc-toolkit -v -d=./docs/jsdoc/ -r -s src/",
"buildVsdocs": "jsdoc-toolkit -v -d=./docs/vsdoc/ -t=./node_modules/jsdoc-toolkit/templates/vsdoc/ -r -s src/",
"lint": "atropa-jslint ./src/clone-function.js",
"srcFormat": "atropa-jsformatter ./src/clone-function.js ./src/clone-function.js"
},
"homepage": "https://github.com/matthewkastor/clone-function/",
"bugs": "https://github.com/matthewkastor/clone-function/issues",
"repository": {
"type": "git",
"url": "git://github.com/matthewkastor/clone-function.git"
},
"keywords": [
"clone-function",
"atropa"
],
"author": {
"name": "Matthew Kastor",
"email": "matthewkastor@gmail.com",
"url": "https://plus.google.com/100898583798552211130"
},
"licenses": [
{
"type": "GPL-3.0",
"url": "http://www.gnu.org/licenses/gpl-3.0-standalone.html"
}
]
}