-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
27 lines (27 loc) · 1001 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
{
"name": "plural-forms",
"version": "0.5.3",
"main": "dist/simple.js",
"repository": "[email protected]:c-3po-org/plural-forms.git",
"author": "a.mostovenko <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run build && BABEL_ENV=test jest",
"build": "npm run build-minimal && npm run build-normal && npm run build-minimal-safe",
"build-minimal": "rollup --config ./build/rollup-config-minimal.js",
"build-normal": "rollup --config ./build/rollup-config.js",
"build-minimal-safe": "node build/build-minimal-safe.js && rollup --config ./build/rollup-config-minimal-safe.js"
},
"typings": "./plural-forms.d.ts",
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"jest": "^21.2.1",
"jest-cli": "^22.4.2",
"rollup": "^0.51.7",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
}
}