-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 942 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
{
"name": "unicode-conversion-maps",
"version": "0.0.1",
"description": "This library holds the maps that are needed for conversion from ascii to unicode",
"main": "dist/maps.umd.js",
"module": "dist/maps.js",
"repository": "https://github.com/indicjs/unicode-conversion-maps",
"author": "Akshay S Dinesh <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "npm run createMaps && eslint lib test",
"createMaps": "node scripts/createMaps.js",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test"
},
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"mocha": "^3.2.0",
"rollup": "^0.39.2",
"rollup-plugin-babel": "^2.7.1"
}
}