-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "malette",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run server",
"test": "karma start",
"build": "npm run compile && npm run bundle && npm run combine",
"compile": "babel src -d _tmp --blacklist es6.modules -e 0",
"bundle": "rollup _tmp/index.js -o dist/malette.js",
"combine": "uglifyjs node_modules/document-register-element/build/document-register-element.js dist/malette.js -o dist/polyfilled-malette.js",
"server": "http-server -p 8081",
"open": "opener http://localhost:8081",
"watch": "watch 'npm run build' src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.21",
"babelify": "^6.1.3",
"http-server": "^0.8.0",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18",
"rollup": "^0.12.1",
"uglify-js": "^2.4.24"
},
"dependencies": {
"document-register-element": "^0.4.5"
}
}