forked from rauschma/enumify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 790 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 790 Bytes
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
{
"name": "enumer",
"version": "1.0.0",
"main": "./lib/enumer.js",
"files": [
"lib",
"src"
],
"devDependencies": {
"babel-cli": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.2.0",
"mocha": "^3.4.2"
},
"scripts": {
"build": "babel src --out-dir lib",
"build-test-es5": "npm run build && babel test --out-dir test-es5 && sed -i '' 's/src\\/enumer/lib\\/enumer/' test-es5/enumer_test.js",
"watch": "babel src --out-dir lib --watch",
"test": "mocha --ui qunit --compilers js:babel-register",
"mocha": "mocha --ui qunit",
"prepublish": "npm run build"
},
"author": "Chris Lam <chris@lam.co.nz>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chrislam/enumer"
}
}