-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "jspointerlock",
"version": "1.0.0",
"description": "W3C Pointer Lock Fallback",
"main": "dist/jspointerlock.min.js",
"repository": "https://github.com/ardean/jsPointerLock",
"author": "ardean",
"license": "MIT",
"keywords": [
"pointer-lock",
"pointerlock",
"html5-pointer-lock",
"w3c-pointer-lock",
"fallback",
"jspointerlock",
"w3c",
"events",
"browser",
"jsremote"
],
"scripts": {
"start": "http-server ./",
"build": "npm run build-src && npm run build-src-min",
"build-src": "jspm build src/index.js dist/jspointerlock.js --externals jquery,events --format umd --global-name jsPointerLock --global-deps \"{'jquery':'$','events':'EventEmitter'}\"",
"build-src-min": "jspm build src/index.js dist/jspointerlock.min.js --externals jquery,events --format umd --global-name jsPointerLock --global-deps \"{'jquery':'$','events':'EventEmitter'}\" --minify --skip-source-maps",
"build-docs": "jspm build index.js docs/index.js && cpy *.{html,css} docs/",
"build-docs-dist": "cpy dist/jspointerlock.min.js docs/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"cpy-cli": "^1.0.1",
"http-server": "^0.9.0",
"jspm": "^0.17.0-beta.38"
},
"jspm": {
"name": "jspointerlock",
"main": "src/index.js",
"dependencies": {
"events": "github:jspm/nodelibs-events@^0.1.1",
"jquery": "npm:jquery@^3.1.1"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.20"
},
"peerDependencies": {
"assert": "npm:jspm-nodelibs-assert@^0.2.0",
"process": "npm:jspm-nodelibs-process@^0.2.0",
"util": "npm:jspm-nodelibs-util@^0.2.0"
},
"overrides": {
"npm:jquery@3.1.1": {
"format": "amd"
}
}
}
}