-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
71 lines (71 loc) · 2.35 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "taggle",
"version": "1.15.0",
"description": "Taggle is a dependency-less tagging library",
"author": "Sean Coker <[email protected]>",
"url": "https://sean.is/poppin/tags",
"repository": {
"type": "git",
"url": "[email protected]:okcoker/taggle.js.git"
},
"browserDependencies": {},
"devDependencies": {
"autoprefixer": "9.7.3",
"browser-sync": "2.26.7",
"coveralls": "3.0.9",
"cssnano": "4.1.10",
"eslint": "6.8.0",
"install": "0.13.0",
"karma": "6.3.16",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.1",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "3.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"karma-sinon-chai": "2.0.2",
"node-sass": "7.0.0",
"phantomjs-prebuilt": "2.1.16",
"postcss-cli": "6.1.3",
"puppeteer": "2.0.0",
"sinon": "8.0.4",
"typescript": "3.7.4",
"uglify-js": "3.7.4"
},
"bugs": {
"url": "https://github.com/okcoker/taggle.js/issues"
},
"homepage": "https://github.com/okcoker/taggle.js",
"main": "src/taggle.js",
"types": "types/taggle.d.ts",
"directories": {
"test": "test"
},
"browserslist": [
"IE >= 8",
"last 2 versions"
],
"scripts": {
"ie8": "mkdir -p dist && uglifyjs src/taggle-ie8.js src/taggle-ie9.js src/taggle.js -o dist/taggle-ie8.min.js --comments --ie8",
"ie9": "mkdir -p dist && uglifyjs src/taggle-ie9.js src/taggle.js -o dist/taggle-ie9.min.js --comments",
"modern": "mkdir -p dist && uglifyjs src/taggle.js -o dist/taggle.min.js --comments",
"min": "npm run ie8 && npm run ie9 && npm run modern",
"css": "npm run sass && npm run postcss",
"postcss": "postcss --config postcss.config.js -o example/css/taggle.min.css example/css/taggle.css",
"sass": "node-sass --output-style expanded example/scss/taggle.scss example/css/taggle.css",
"build": "npm run lint && npm run test && npm run css && npm run min",
"lint": "eslint --quiet src/taggle.js __tests__/taggle-test.js",
"test": "karma start --single-run",
"test:types": "tsc --project types/tsconfig.json",
"test:watch": "karma start",
"dev": "browser-sync start --server '.' --files 'example' 'src' --port 9100 --startPath '/example'"
},
"keywords": [
"tags",
"tagging",
"standalone",
"micro",
"library"
],
"license": "MIT"
}