-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 978 Bytes
/
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
{
"version": "0.6.0",
"name": "un.js",
"main": "index.js",
"description": "un: unframework for universal uncomponents",
"repository": {
"type": "git",
"url": "https://github.com/dmitriz/un"
},
"scripts": {
"wdev": "open http://localhost:8080/ && webpack-dev-server",
"pub": "npm version patch && npm publish && git push",
"sync": "git add .; git commit; git pull && git push",
"test": "karma start"
},
"keywords": [],
"author": "Dmitri Zaitsev <[email protected]> (https://github.com/dmitriz)",
"license": "MIT",
"devDependencies": {
"browserify": "16.5.2",
"browserify-shim": "3.8.16",
"jasmine-core": "3.99.1",
"karma": "6.3.16",
"karma-browserify": "7.0.0",
"karma-chrome-launcher": "3.1.1",
"karma-jasmine": "3.3.1",
"karma-source-map-support": "1.4.0",
"watchify": "4.0.0"
},
"browserify-shim": {
"external": "global:External"
},
"dependencies": {
"un.js": "^0.6.0"
}
}