-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 Bytes
/
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
{
"name": "timecode",
"description": "Convert time to frames and back",
"version": "1.0.0",
"main": "./lib/timecode.js",
"devDependencies": {
"babel-cli": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.2.0",
"mocha": "^2.2.5"
},
"scripts": {
"build": "babel src --out-dir lib",
"build-test-es5": "npm run build && babel test --out-dir test-es5 && sed -i 's/\\/src\\//\\/lib\\//' test-es5/*.js",
"watch": "babel src --out-dir lib --watch",
"test": "mocha --ui tdd --compilers js:babel-register",
"test-es5": "mocha --ui tdd test-es5",
"prepublish": "npm run build",
"example": "babel-node ./examples/example.js"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"timecode",
"pebble"
],
"author": {
"name": "Matas Jonys",
"url": "https://github.com/MatasJonys"
},
"license": "MIT",
"repository": {
"type": "git",
"url": ""
}
}