-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "slim-js",
"version": "3.1.0",
"description": "Superpower Web Components",
"main": "Slim.js",
"scripts": {
"prepublish": "npm run build",
"dev": "babel src/Slim.js --watch --out-file Slim.js",
"build": "babel src/Slim.js > Slim.js && uglifyjs Slim.js -o Slim.min.js && uglifyjs src/Slim.js -o Slim.es6.js",
"pretest": "npm run build && node prepare-test.js",
"test": "nightwatch -- tests",
"server": "python -m SimpleHTTPServer 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eavichay/slim.js.git"
},
"typings": "Slim.d.ts",
"author": "Avichay Eyal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eavichay/slim-web-components/issues"
},
"homepage": "https://github.com/eavichay/slim-web-components#readme",
"keywords": [
"web",
"components",
"binding"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-env": "^1.6.1",
"nightwatch": "0.9.8",
"selenium-download": "^2.0.7",
"selenium-server-standalone-jar": "^3.0.1",
"static-server": "^2.0.6",
"uglify-es": "^3.1.5"
},
"dependencies": {}
}