-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "riot-fa",
"version": "4.6.2",
"description": "Font Awesome icons as Riot components",
"files": [
"dist"
],
"jsnext:main": "dist/riot-fa.es6.js",
"main": "dist/riot-fa.cjs.js",
"devDependencies": {
"babel-preset-es2015-rollup": "^1.0.0",
"browser-sync": "^2.10.0",
"change-case": "^2.3.1",
"chokidar-cli": "^1.2.0",
"eslint": "^2.5.1",
"expect.js": "^0.3.1",
"font-awesome": "4.6.0",
"fs-promise": "^0.5.0",
"gh-pages": "^0.11.0",
"karma": "^0.13.19",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-riot": "^1.0.1",
"mocha": "^2.3.4",
"node-fetch": "^1.5.0",
"phantomjs-prebuilt": "^2.1.7",
"riot": "^2.3.17",
"rollup": "^0.25.7",
"rollup-plugin-babel": "^2.3.8",
"rollup-plugin-commonjs": "^2.1.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.5.0",
"rollup-plugin-riot": "^0.1.0",
"rollup-pluginutils": "^1.3.1",
"uglify-js": "^2.6.1"
},
"scripts": {
"prepare": "node op/prepare.js",
"build": "node op/rollup.js",
"deploy": "gh-pages -d dist",
"pretest": "npm run build",
"test": "npm run eslint && npm run karma",
"eslint": "eslint src/*.js",
"karma": "karma start test/karma.conf.js",
"server": "browser-sync start --files 'dist/*.js, dist/index.html' --server 'dist/'",
"watch": "chokidar 'src/*' 'demo/*' -c 'npm run build'",
"start": "npm run server & npm run watch",
"prepublish": "npm run prepare && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/cognitom/riot-fa"
},
"keywords": [
"riot",
"riot-component",
"font-awesome",
"icons"
],
"author": "Tsutomu Kawamura <tsutomu@librize.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cognitom/riot-fa/issues"
},
"homepage": "https://github.com/cognitom/riot-fa"
}