This repository has been archived by the owner on Oct 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "requiem-ui",
"version": "0.3.3",
"description": "UI element extension to Requiem, an experimental front-end JS framework.",
"homepage": "http://andrewscwei.github.io/requiem-ui",
"license": "MIT",
"main": "lib/requiem-ui.js",
"scripts": {
"start": "npm run build",
"test": "mocha tests --recursive --reporter spec --compilers js:babel-register",
"clean": "rimraf lib",
"build": "npm run clean && ncp src lib",
"docs": "rimraf docs && jsdoc src -r -R README.md -c .jsdocrc",
"play": "rimraf playground/public && pug -O \"{basedir:'playground/app/templates'}\" -P -w -o playground/public playground/app/templates/index.pug & webpack-dev-server --progress --inline --hot --config playground/webpack.config.babel.js --content-base playground/public --port 8080"
},
"authors": [
"Andrew Wei <andrewscwei@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewscwei/requiem-ui.git"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.1",
"jsdoc": "^3.4.3",
"minuet": "^0.17.0",
"mocha": "^3.3.0",
"ncp": "^2.0.0",
"node-sass": "^4.5.2",
"pug": "^2.0.0-rc.1",
"pug-cli": "^1.0.0-alpha6",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webcomponents.js": "^0.7.24",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"files": [
"lib"
],
"dependencies": {
"requiem": "^0.58.1"
}
}