-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.05 KB
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
{
"name": "{{add npm package name}}",
"version": "0.0.1",
"description": "{{add npm package description}}",
"author": "{{add the author's Github handle}}",
"main": "./src/index.js",
"scripts": {
"browser": "mkdir -p browser && browserify src/index.js --standalone src/index.js > browser/index.js",
"watch": "watchify test/dev.js -v -d -o test/index.js",
"test": "ava test/test.js -v",
"size": "bundle-size ./browser/index.js"
},
"babel": {
"presets": [
"es2015"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"ava": {
"require": [
"./test/test-helpers.js"
]
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-register": "^6.14.0",
"browserify": "^12.0.1",
"bundle-size": "^0.7.0",
"jsdom": "^9.5.0",
"minifyify": "^7.3.3",
"watchify": "^3.7.0"
},
"dependencies": {
"babelify": "^7.3.0",
"babel-preset-es2015": "6.6.0"
},
"repository": {
"type": "git",
"url": "{{add url}}"
},
"license": "{{add license}}"
}