-
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": "transform-parser",
"version": "1.0.1",
"description": "Converts css transform string to an object and vice versa",
"main": "index",
"typings": "index",
"repository": "https://github.com/praneshr/transform-parser.git",
"author": "Pranesh Ravi <praneshpranesh@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/expect": "^1.20.4",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"expect": "^24.9.0",
"mocha": "^6.2.0",
"rollup": "^1.20.2",
"rollup-plugin-typescript2": "^0.23.0",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "mocha -r ts-node/register test/*.ts",
"prepublishOnly": "yarn build && yarn test"
}
}